BGEditTCell.h 1.4 KB

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