123456789101112131415161718192021222324252627 |
- //
- // MyDetailTableViewCell.h
- // DSH
- //
- // Created by 张毅成 on 2018/9/26.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MyDetailTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imageViewArrow;
- @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
- @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
- @property (weak, nonatomic) IBOutlet UITextField *textFieldDetail;
- @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imageViewHeight;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imageViewWidth;
- - (void)setDataWithModel:(NSDictionary *)dic;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|