UserCenterViewController2.h 728 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // UserCenterViewController2.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/30.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. //BaseViewController
  10. @interface UserCenterViewController2 : BaseViewController
  11. @property (nonatomic, strong) NSString* custom;
  12. @property (nonatomic, strong) void(^callback)(void);
  13. @property (nonatomic, strong) IBOutlet UIView* containerView;
  14. @property (nonatomic, strong) IBOutlet UIView* otherView;
  15. //我的
  16. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *centerBtn;
  17. //客服
  18. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *serviceBtn;
  19. //更多
  20. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *moreBtn;
  21. @end