ThirdTableViewCell.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ThirdTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/22.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class ThirdTableViewCell;
  10. @protocol buttonClickDelegate <NSObject>
  11. ////取消认证类型
  12. //- (void)cancelIdentificationView;
  13. //获取认证类型
  14. - (void)getIdentificationWithCell:(ThirdTableViewCell *)myCell;
  15. @end
  16. @interface ThirdTableViewCell : UITableViewCell
  17. @property (nonatomic, weak) id<buttonClickDelegate>delegate;
  18. @property (weak, nonatomic) IBOutlet UIButton *identificationButton;
  19. @property (weak, nonatomic) IBOutlet UILabel *identificationType;
  20. @property (weak, nonatomic) IBOutlet UILabel *identificationName;
  21. @property (weak, nonatomic) IBOutlet UILabel *contactWay;
  22. @property (weak, nonatomic) IBOutlet UITextField *typeTextFiled;
  23. @property (weak, nonatomic) IBOutlet UITextField *nameTextFiled;
  24. @property (weak, nonatomic) IBOutlet UITextField *contactTextFiled;
  25. @property (weak, nonatomic) IBOutlet UILabel *identificationNumLabel;
  26. @property (weak, nonatomic) IBOutlet UITextField *identificationNumFiled;
  27. @property (weak, nonatomic) IBOutlet UILabel *idStartLabel;
  28. - (void)creatCellWithAuthentication:(int)authentication andIdTypeStr:(NSString *)idTypeStr andIdNameStr:(NSString *)idNameStr andIdContactStr:(NSString *)idContactStr andIdNumStr:(NSString *)idNumStr andShowIdNum:(int)idNum;
  29. @end