123456789101112131415161718192021222324252627282930313233 |
- //
- // UserCenterViewController1.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/30.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import "BaseViewController.h"
- //BaseViewController
- @interface UserCenterViewController1 : BaseViewController
- @property (nonatomic, strong) NSString* custom;
- @property (nonatomic, strong) void(^callback)(void);
- //悬浮栏离屏幕左边的距离(处理iphoneX系列)
- @property (unsafe_unretained, nonatomic) IBOutlet NSLayoutConstraint *leftConstraint;
- @property (nonatomic, strong) IBOutlet UIView* containerView;
- @property (nonatomic, strong) IBOutlet UIView* otherView;
- //我的
- @property (unsafe_unretained, nonatomic) IBOutlet UIButton *centerBtn;
- //客服
- @property (unsafe_unretained, nonatomic) IBOutlet UIButton *serviceBtn;
- //更多
- @property (unsafe_unretained, nonatomic) IBOutlet UIButton *moreBtn;
- @end
|