最简单的时间选择器,只需一句代码搞定
查看次数:9951
下载次数:1640
上传时间:2017-06-25
大小:77 B
git地址:https://github.com/JKTerry/UICustomDatePicker
最简单的时间选择器,只需一句代码搞定
使用方法:
#import "UICustomDatePicker.h"
__weak ViewController *vc = self;
[UICustomDatePicker showCustomDatePickerAtView:self.view choosedDateBlock:^(NSDate *date) {
__strong ViewController *ss = vc;
NSLog(@"current Date:%@",date);
} cancelBlock:^{
}];
收藏