博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIActionSheet添加UIDatePicker
阅读量:5830 次
发布时间:2019-06-18

本文共 2604 字,大约阅读时间需要 8 分钟。

//在iphone中没有点击弹出选择时间的控件,下面就利用ios的UIActionSheet + UIDatePicker + UIToolBar 来实现弹出时间选择控件。代码如下:  1 UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:nil delegate:nil cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:nil, nil]; 2      3     UIDatePicker *datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0.0f, 44.0f, 0.0f, 0.0f)]; 4     [datePicker setDate:[NSDate date]];    //显示当前时间 5     [datePicker setUserInteractionEnabled:YES];  //   6     datePicker.datePickerMode = UIDatePickerModeTime; //模式:显示时间 7      8     UIToolbar *pickerDateToolBar = [[UIToolbar alloc]  initWithFrame:CGRectMake(0.0f, 0.0f, self.view.bounds.size.width, 44)]; //创建工具条,用来设置或者退出actionsheet. 9     pickerDateToolBar.barStyle = UIBarStyleBlackOpaque;10     [pickerDateToolBar sizeToFit];11     12     NSMutableArray *barItems = [[NSMutableArray alloc] init];13     14     UIBarButtonItem *flexSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];15     [barItems addObject:flexSpace];16     UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Cancel", nil) style:UIBarButtonSystemItemCancel target:self action:@selector(datePickerCancelClick:)];17     [barItems addObject:cancelButton];18     UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"OK", nil) style:UIBarButtonItemStyleDone target:self action:@selector(datePickerDoneClick:)];19 //    UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(datePickerDoneClick:)];20     [barItems addObject:doneButton];21     22     [pickerDateToolBar setItems:barItems animated:YES]; //将按键加入toolbar23     24     UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20.0f, 11.0f, 100.0f, 22.0f)];25     label.text = NSLocalizedString(@"SetTimeLabel", nil);26     label.backgroundColor = [UIColor clearColor];27     label.textColor = [UIColor whiteColor];28     [label sizeToFit];29     [pickerDateToolBar addSubview:label];30     31     [actionSheet addSubview:pickerDateToolBar];32     [actionSheet addSubview:datePicker];33 //    [actionSheet setBounds:CGRectMake(0.0f, 0.0f, self.view.bounds.size.width, 260)];34     [actionSheet showInView: [UIApplication sharedApplication].keyWindow]; //这里使用全局的键盘的view,可以避免在有tabBar或者toolBar的页面,把actionSheet下方挡住。35 //    [actionSheet setBounds:CGRectMake(0.0f, 0.0f, self.view.bounds.size.width, 260)];

 

转载于:https://www.cnblogs.com/yzm157/archive/2013/01/18/2866320.html

你可能感兴趣的文章
从微软的DBML文件中我们能学到什么(它告诉了我们什么是微软的重中之重)~目录...
查看>>
被需求搞的一塌糊涂,怎么办?
查看>>
c_数据结构_队的实现
查看>>
jquery 选择器总结
查看>>
Qt设置背景图片
查看>>
【阿里云文档】常用文档整理
查看>>
java中的Volatile关键字
查看>>
前端自定义图标
查看>>
实验二
查看>>
独立开发一个云(PaaS)的核心要素, Go, Go, Go!!!
查看>>
MyBatis使用DEMO及cache的使用心得
查看>>
网站文章如何能自动判定是抄袭?一种算法和实践架构剖析
查看>>
【OpenCV学习】滚动条
查看>>
ofo用科技引领行业进入4.0时代 用户粘性连续8个月远甩摩拜
查看>>
兰州青年志愿者“中西合璧”玩快闪 温暖旅客回家路
查看>>
计划10年建10万廉价屋 新西兰政府:比想象中难
查看>>
甘肃发首版《3D打印职业教育教材》:校企合作育专才
查看>>
李娜入选国际网球名人堂 成亚洲第一人
查看>>
为找好心人抚养孩子 浙江一离婚父亲将幼童丢弃公园
查看>>
晚婚晚育 近20年巴西35岁以上孕妇增加65%
查看>>