1234567891011121314151617181920212223 |
- //
- // baseTableViewCell.h
- // 双子星云手机
- //
- // Created by xd h on 2024/10/23.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface baseTableViewCell : UITableViewCell
- @property(nonatomic,strong)UIView *cellBgView;
- @property(nonatomic,strong)UIImageView *mImageView;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *contentLabel;
- @property(nonatomic,strong)UIImageView *rightImage;
- @property(nonatomic,assign)BOOL showLeftImageType;//是否显示左边的图片
- @property(nonatomic,assign)BOOL showRightImageType;//是否显示有边的图片
- @end
- NS_ASSUME_NONNULL_END
|