2
0

DiscoverMomentsTableViewCell.h 518 B

1234567891011121314151617181920212223
  1. //
  2. // DiscoverTableViewCell.h
  3. // WildFireChat
  4. //
  5. // Created by Tom Lee on 2020/3/10.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <WFChatUIKit/WFChatUIKit.h>
  10. #ifdef WFC_MOMENTS
  11. #import <WFMomentClient/WFMomentClient.h>
  12. #endif
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface DiscoverMomentsTableViewCell : UITableViewCell
  15. @property (nonatomic, strong)BubbleTipView *bubbleView;
  16. #ifdef WFC_MOMENTS
  17. @property (nonatomic, strong)WFMFeed *lastFeed;
  18. #endif
  19. @end
  20. NS_ASSUME_NONNULL_END