JXAnnounceCell.h 442 B

12345678910111213141516171819202122
  1. //
  2. // JXAnnounceCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2018/8/17.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXAnnounceCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *icon;
  11. @property (nonatomic, strong) UILabel *name;
  12. @property (nonatomic, strong) UILabel *time;
  13. @property (nonatomic, strong) UILabel *content;
  14. - (void)setCellHeightWithText:(NSString *)text;
  15. @end