码迷,mamicode.com
首页 > 其他好文 > 详细

UIDatePicker控件

时间:2014-08-07 18:22:20      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   for   ar   cti   时间   ad   

用处:选择日期或时间  当选择新的日期或时间的时候,值改变事件会被触发

-(void)viewDidLoad

{

    CGRect frame = CGRectMake(20,20,320,100);

  self.datePicker = [[UIDatePicker alloc]initWithFrame:frame];

  //设置显示模式

  self.datePicker.datePickerMode = UIDatePickerModeDate;

  [self.view addSubView:self.datePicker];

  CGRect framelbl = CGRectMake(0,300,320,50);

  self.label = [[UILable alloc]initWithFrame:framelbl];

  [self.view addSubView:self.label];

  //添加值改变事件

  [self.datePicker addTarget:self action:@selector(change:) forControlEvents:UIControlEventValueChanged];

}

UIDatePicker控件,布布扣,bubuko.com

UIDatePicker控件

标签:style   color   io   for   ar   cti   时间   ad   

原文地址:http://www.cnblogs.com/AngryCooder/p/3897578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!