UserCenterViewController1.h 871 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // UserCenterViewController1.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 UserCenterViewController1 : BaseViewController
  11. @property (nonatomic, strong) NSString* custom;
  12. @property (nonatomic, strong) void(^callback)(void);
  13. //悬浮栏离屏幕左边的距离(处理iphoneX系列)
  14. @property (unsafe_unretained, nonatomic) IBOutlet NSLayoutConstraint *leftConstraint;
  15. @property (nonatomic, strong) IBOutlet UIView* containerView;
  16. @property (nonatomic, strong) IBOutlet UIView* otherView;
  17. //我的
  18. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *centerBtn;
  19. //客服
  20. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *serviceBtn;
  21. //更多
  22. @property (unsafe_unretained, nonatomic) IBOutlet UIButton *moreBtn;
  23. @end