iOS學習之UIDatePicker控制項使用

來源:互聯網
上載者:User

iOS上的選擇時間日期的控制項是這樣的,左邊是時間和日期混合,右邊是單純的日期模式。

,  

您可以選擇自己需要的模式,Time, Date,Date and Time  , Count Down Timer四種模式。

 

 

本篇文章簡單介紹下PickerDate控制項的使用

 

 

1、建立一個Singe View Application,命名為DatePickDemo,其他設定

 

2、放置控制項

開啟ViewController.xib,拖拽一個DatePicker控制項放到介面上,再拖拽一個Button控制項放到介面上,雙擊Button,輸入"選擇日期時間"

3、建立xib和ViewController的關聯

按下command+alt+enter鍵開啟Assistant Editor,選中DatePicker按住Control鍵,拖拽到viewController.h上,

建立Outlet datePicker。

以同樣方式給Button建立一個Action關聯映射,命名為selectDate,事件類型為預設的Touch Up Inside。

4、實現代碼

 

單擊ViewController.m,找到剛才建立的

 

- (IBAction)selectDate:(id)sender {

}

在這裡添加響應代碼

 

- (IBAction)selectDate:(id)sender {    NSDate *select = [datePicker date];    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];    NSString *dateAndTime =  [dateFormatter stringFromDate:select];    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"時間提示" message:dateAndTime delegate:self cancelButtonTitle:@"確定" otherButtonTitles:nil, nil];    [alert show];}

運行看效果:

 

 

5、修改模式成Date模式,修改代碼

 

    [dateFormatter setDateFormat:@"yyyy-MM-dd"];

 

例子代碼:https://github.com/schelling/YcDemo

著作權聲明:本文由http://blog.csdn.net/totogo2010/原創,歡迎轉載分享。請尊重作者勞動,轉載時保留該聲明和作者部落格連結,謝謝

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.