12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // KXADBaseTableViewCell.h
- // CAISHEN
- //
- // Created by 王奥东 on 2018/9/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface KXADBaseTableViewCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *icon;
- @property (nonatomic, strong) UILabel *cellTitleLabel;
- @property (nonatomic, strong) UILabel *cellDetailLabel;
- @property (nonatomic, strong) UILabel *cellSubDetailLabel;
- @property (nonatomic, strong) UIView *containerView;// 自定义视图容器
- @property (nonatomic, strong) id cellModel;
- @property (nonatomic, strong) UIView *topLine;
- @property (nonatomic, strong) UIView *bottomLine;
- @property (nonatomic, strong) UIImageView *rightImageView;
- @property (nonatomic, strong) UIButton *tableViewCellButton;
- @property (nonatomic, strong) UITextField *tableViewCellTextField;
- #pragma mark - > Attributes
- @property (nonatomic, copy) NSString *iconImageURL;
- @property (nonatomic, strong) UIImage *placeHolderImage;
- @property (nonatomic, assign) BOOL isHideTopLabel;
- - (void)cellConfigureFor:(id)cellModel;
- - (void)initUI;
- - (void)initAttributes;
- - (void)initCellAttributes;
- - (void)initCustomUI;
- @end
|