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

DatePicker使用

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

标签:style   blog   http   color   使用   io   ar   2014   

// 创建时间选择器
    UIDatePicker *picker = [[UIDatePicker alloc] init];
    
    // 设置时间格式为只显示日期
    picker.datePickerMode = UIDatePickerModeDate;
    // 显示中文
    picker.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"ZH-CN"];
    
    // 设置键盘按为datePicker
    self.inputField.inputView = picker;
    
    // 创建工具条
    UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    
    // 设置工具条背景色
    toolbar.tintColor = [UIColor orangeColor];
    
    // 创建UIbarButtonItem   
    UIBarButtonItem *item1 = [[UIBarButtonItem alloc] initWithTitle:@"上一个" style:UIBarButtonItemStylePlain target:self action:@selector(previousBtn)];
    UIBarButtonItem *item2 = [[UIBarButtonItem alloc] initWithTitle:@"下一个" style:UIBarButtonItemStylePlain target:self action:@selector(previousBtn)];
    UIBarButtonItem *item3 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
    UIBarButtonItem *item4 = [[UIBarButtonItem alloc] initWithTitle:@"完成" style:UIBarButtonItemStylePlain target:self action:@selector(previousBtn)];
    
    // 给工具条添加子控件
    toolbar.items = @[item1,item2, item3,item4];
    
    // 给文本框添加辅助视图
    self.inputField.inputAccessoryView = toolbar;

效果图:

bubuko.com,布布扣

DatePicker使用,布布扣,bubuko.com

DatePicker使用

标签:style   blog   http   color   使用   io   ar   2014   

原文地址:http://www.cnblogs.com/Fc-ios/p/3920229.html

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