TableDefaultCell.h 385 B

123456789101112131415
  1. //
  2. // TableDefaultCell.h
  3. // model
  4. //
  5. // Created by JuYi on 2018/7/16.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. // 标题 + 内容 cell
  8. #import <UIKit/UIKit.h>
  9. @interface TableDefaultCell : UITableViewCell
  10. @property (nonatomic, strong) UILabel *titleLabel;
  11. @property (nonatomic, strong) UITextField *contentTF;
  12. @property (nonatomic, strong) UIImageView *lineView;
  13. @end