ClickOKView.h 665 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ClickOKView.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/10/29.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol ClickOKViewDelegate <NSObject>
  11. - (void)didClickOKViewDelegate;
  12. @end
  13. typedef void(^TouchBlock)(void);
  14. @class DocumentModel;
  15. @interface ClickOKView : UIView
  16. @property (nonatomic, weak) id<ClickOKViewDelegate>delegate;
  17. @property (nonatomic, copy) TouchBlock buttonBlock;
  18. @property (nonatomic, strong) TDButton *zansubBtn;
  19. - (void)loadZanListModel:(DocumentModel *)model;
  20. - (void)loadZanListModel:(NSArray *)zanArr withAllNumber:(NSInteger)total;
  21. @end
  22. NS_ASSUME_NONNULL_END