SIdentificationVC.h 846 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SIdentificationVC.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/8/4.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. typedef NS_ENUM(NSInteger ,AuthenticationTableView)
  10. {
  11. // AuthenticationZeroSection, //基本资料
  12. AuthenticationOneSection, //认证消息
  13. AuthenticationTwoSection, //身份认证
  14. // AuthenticationThreeSection, //选择推荐
  15. // AuthenticationFourSection, //公会邀请码
  16. AuthenticationFiveSection, //提交
  17. AuthenticationTab_Count,
  18. };
  19. @interface SIdentificationVC : BGBaseViewController
  20. @property ( nonatomic, copy) NSString *nameString;
  21. @property ( nonatomic, copy) NSString *sexString;
  22. @property ( nonatomic, copy) NSString *user_id;
  23. @end