baseTableViewCell.h 627 B

1234567891011121314151617181920212223
  1. //
  2. // baseTableViewCell.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/10/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface baseTableViewCell : UITableViewCell
  10. @property(nonatomic,strong)UIView *cellBgView;
  11. @property(nonatomic,strong)UIImageView *mImageView;
  12. @property(nonatomic,strong)UILabel *titleLabel;
  13. @property(nonatomic,strong)UILabel *contentLabel;
  14. @property(nonatomic,strong)UIImageView *rightImage;
  15. @property(nonatomic,assign)BOOL showLeftImageType;//是否显示左边的图片
  16. @property(nonatomic,assign)BOOL showRightImageType;//是否显示有边的图片
  17. @end
  18. NS_ASSUME_NONNULL_END