DNOFormView icon indicating copy to clipboard operation
DNOFormView copied to clipboard

自定义表格

DNOFormView

自定义表格

###Gif Demo Demo.gif

####你需要几行几列 默认4行8列

@property (nonatomic, assign) NSUInteger row;    //default is 4
@property (nonatomic, assign) NSUInteger column; //default is 8

####有号的数组

/** 有号数组 indexPath */
@property (nonatomic, strong) NSArray <NSIndexPath *>*canRegisters;

####点击之后的回调

// canRegister: 是否有号
// info       : 星期几 多少日 上下午?
@property (nonatomic, copy  ) void (^clickBlock)(BOOL canRegister, NSDictionary *info);

info字典

// 对应info里面的key
UIKIT_EXTERN NSString * const kWeek;
UIKIT_EXTERN NSString * const kDate;
UIKIT_EXTERN NSString * const kTime;