// // TableCell.h // myWear // // Created by xTT on 2017/1/18. // Copyright © 2017年 xTT. All rights reserved. // #import #import #import "baseModel.h" typedef void (^BlockCellBtnClick) (id sender, id blockCell); @interface baseCell : UITableViewCell @property (strong, nonatomic) BlockCellBtnClick block; - (IBAction)cellClick:(id)sender; - (void)initCellView:(baseModel *)bModel; -(void)showHiddenAccessoryDisclosureIndicator:(BOOL)state; @end //输入框cell @interface TextFieldCell : baseCell @property (strong, nonatomic) IBOutlet UITextField *textField; @property (assign, nonatomic) NSString *regularStr; @property (assign, nonatomic) NSInteger maxLimitLength; @property (assign, nonatomic) NSInteger minLimitLength; /** 弹出时间 转轮 UIDatePicker 选择器 */ - (void)timeInputViewWithModel:(UIDatePickerMode)mode WithData:(NSDate*)nowDate; /** 弹出 数字 转轮 UIDatePicker 选择器 */ - (void)numberInputViewWithStartNum:(NSInteger)startNum EndNum:(NSInteger)endNum WithIndex:(NSInteger)nowIndex; @end @interface RailCell : baseCell @property (strong, nonatomic) IBOutlet UILabel *label_radius; @end @interface DailyCell : baseCell @end @interface PlayVoiceCell : baseCell @property (strong, nonatomic) NSString *voicePath; @property (strong, nonatomic) NSString *voiceUrl; - (void)startAnimation; @end