1234567891011121314151617181920212223 |
- //
- // UserCenterViewController.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/30.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface UserCenterViewController : BaseViewController
- @property (nonatomic, strong) NSString* custom;
- @property (nonatomic, strong) void(^callback)(void);
- @property (nonatomic, strong) IBOutlet UIView* containerView;
- @property (nonatomic, strong) IBOutlet UIView* otherView;
- @end
|