MyDetailTableViewCell.h 831 B

123456789101112131415161718192021222324252627
  1. //
  2. // MyDetailTableViewCell.h
  3. // DSH
  4. //
  5. // Created by 张毅成 on 2018/9/26.
  6. // Copyright © 2018 WZX. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyDetailTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imageViewArrow;
  12. @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
  13. @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
  14. @property (weak, nonatomic) IBOutlet UITextField *textFieldDetail;
  15. @property (weak, nonatomic) IBOutlet UIImageView *imageViewIcon;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imageViewHeight;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imageViewWidth;
  18. - (void)setDataWithModel:(NSDictionary *)dic;
  19. + (instancetype)cellWithTableView:(UITableView *)tableView;
  20. @end
  21. NS_ASSUME_NONNULL_END