ConversationCell.h 466 B

12345678910111213141516171819
  1. //
  2. // ConversationCell.h
  3. // ShareExtension
  4. //
  5. // Created by Tom Lee on 2020/10/15.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SharedConversation.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ConversationCell : UITableViewCell
  12. @property(nonatomic, strong)UIImageView *portraitView;
  13. @property(nonatomic, strong)UILabel *nameLabel;
  14. @property(nonatomic, strong)SharedConversation *conversation;
  15. @end
  16. NS_ASSUME_NONNULL_END