// // applyCell.h // jiaPei // // Created by apple on 16/1/22. // Copyright © 2016年 JCZ. All rights reserved. // #import typedef NS_ENUM(NSInteger, ApplyCellType) { ApplyCellType_TextField = 0, ApplyCellType_Image, }; @interface applyCell : UITableViewCell @property (nonatomic, retain) UITextField *detailField; @property (nonatomic, retain) UILabel *titLabel; @property (nonatomic, retain) UIImageView *rightImg; @end