UserCenterViewController.h 465 B

1234567891011121314151617181920212223
  1. //
  2. // UserCenterViewController.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. @interface UserCenterViewController : BaseViewController
  10. @property (nonatomic, strong) NSString* custom;
  11. @property (nonatomic, strong) void(^callback)(void);
  12. @property (nonatomic, strong) IBOutlet UIView* containerView;
  13. @property (nonatomic, strong) IBOutlet UIView* otherView;
  14. @end