// // ClickOKView.h // smartRhino // // Created by tederen on 2019/10/29. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol ClickOKViewDelegate - (void)didClickOKViewDelegate; @end typedef void(^TouchBlock)(void); @class DocumentModel; @interface ClickOKView : UIView @property (nonatomic, weak) iddelegate; @property (nonatomic, copy) TouchBlock buttonBlock; @property (nonatomic, strong) TDButton *zansubBtn; - (void)loadZanListModel:(DocumentModel *)model; - (void)loadZanListModel:(NSArray *)zanArr withAllNumber:(NSInteger)total; @end NS_ASSUME_NONNULL_END