12345678910111213141516171819202122232425262728 |
- //
- // ClickOKView.h
- // smartRhino
- //
- // Created by tederen on 2019/10/29.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol ClickOKViewDelegate <NSObject>
- - (void)didClickOKViewDelegate;
- @end
- typedef void(^TouchBlock)(void);
- @class DocumentModel;
- @interface ClickOKView : UIView
- @property (nonatomic, weak) id<ClickOKViewDelegate>delegate;
- @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
|