123456789101112131415161718192021222324 |
- //
- // applyCell.h
- // jiaPei
- //
- // Created by apple on 16/1/22.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|