applyCell.h 458 B

123456789101112131415161718192021222324
  1. //
  2. // applyCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/22.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSInteger, ApplyCellType) {
  10. ApplyCellType_TextField = 0,
  11. ApplyCellType_Image,
  12. };
  13. @interface applyCell : UITableViewCell
  14. @property (nonatomic, retain) UITextField *detailField;
  15. @property (nonatomic, retain) UILabel *titLabel;
  16. @property (nonatomic, retain) UIImageView *rightImg;
  17. @end