點(diǎn)擊進(jìn)入日期選擇器
github地址選擇源碼
效果:
使用方法:
_pickView = [[BLAreaPickerView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 150)];
_pickView.pickViewDelegate = self;
[_pickView bl_show];
代理:
#pragma mark - - BLPickerViewDelegate
- (void)bl_selectedAreaResultWithProvince:(NSString *)provinceTitle city:(NSString *)cityTitle area:(NSString *)areaTitle{
NSLog(@"%@,%@,%@",provinceTitle,cityTitle,areaTitle);
}
可設(shè)置的屬性:
/** 標(biāo)題大小 */
@property (nonatomic, strong)UIFont *titleFont;
/** 選擇器背景顏色 */
@property (nonatomic, strong)UIColor *pickViewBackgroundColor;
/** 選擇器頭部視圖顏色 */
@property (nonatomic, strong)UIColor *topViewBackgroundColor;
/** 取消按鈕顏色 */
@property (nonatomic, strong)UIColor *cancelButtonColor;
/** 確定按鈕顏色 */
@property (nonatomic, strong)UIColor *sureButtonColor;