CYActiveTieleTableViewCell.h 475 B

123456789101112131415161718192021
  1. //
  2. // CYActiveTieleTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by Ron on 2019/11/14.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CYActiveTieleTableViewCell : UITableViewCell
  11. @property (nonatomic, strong) UIImageView *imageV;
  12. @property (nonatomic, strong) UILabel *title;
  13. @property (nonatomic, strong) UILabel *subtitle;
  14. @property (nonatomic, strong) NSString *subtitleText;
  15. @end
  16. NS_ASSUME_NONNULL_END