| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // BGEditTCell.h
- // BuguLive
- //
- // Created by 丁凯 on 2017/6/12.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class UserModel;
- typedef NS_ENUM(NSInteger ,EditTableView)
- {
- ETXSection = 666, //头像
- ENCSection = 0, //昵称
- EZHSection = 5, //账号
- EXBSection = 1, //性别
- EGXQMSection = 7, //个性签名
- ERZSection = 888, //认证
- ESRSection = 2, //生日
- EQGZTSection = 3, //情感状态
- EJXSection = 999, //家乡
- EZYSection = 4, //职业
- ETab_Count = 6,
- };
- @interface BGEditTCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *leftLabel;
- @property (weak, nonatomic) IBOutlet UILabel *rightLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
- @property (weak, nonatomic) IBOutlet UIImageView *sexImgView;
- @property (weak, nonatomic) IBOutlet UIImageView *nextImgView;
- @property (weak, nonatomic) IBOutlet UIImageView *IDCopyIconImgV;
- @property (nonatomic, strong) UIView *lineView;
- @property (nonatomic, strong) NSMutableArray *nameArray;
- - (void)creatCellWithStr:(NSString *)rightStr andSection:(int)section;
- @end
|