WFCUGeneralImageTextTableViewCell.h 489 B

12345678910111213141516171819
  1. //
  2. // WFCUGeneralImageTextTableViewCell.h
  3. // WFChatUIKit
  4. //
  5. // Created by Rain on 2023/4/20.
  6. // Copyright © 2023 Tom Lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WFCUGeneralImageTextTableViewCell : UITableViewCell
  11. - (instancetype)initWithReuseIdentifier:(NSString *)reuseIdentifier cellHeight:(float)height;
  12. @property(nonatomic, strong)UIImageView *portraitIV;
  13. @property(nonatomic, strong)UILabel *titleLable;
  14. @end
  15. NS_ASSUME_NONNULL_END