FocusOnCollectCell.h 462 B

1234567891011121314151617181920
  1. //
  2. // FocusOnCollectCell.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/11/29.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HMHotItemModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface FocusOnCollectCell : UICollectionViewCell
  12. @property(nonatomic, strong) HMHotItemModel *user;
  13. @property (nonatomic, copy) dispatch_block_t followBlock;
  14. @property(nonatomic, copy) void(^clickImgBlock)(NSString *str);
  15. @end
  16. NS_ASSUME_NONNULL_END