RootViewController.h 650 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RootViewController.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RootViewController : UIViewController
  10. - (instancetype)initWithRootViewController:(UIViewController*)rootViewController;
  11. @property (nonatomic, strong) IBOutlet UIView* embedView;
  12. @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
  13. @property (nonatomic, strong) IBInspectable NSString* theme;
  14. @property (nonatomic, strong) UINavigationController* embedViewController;
  15. @end
  16. @interface UIViewController (XenonSDK)
  17. - (void)sdk_dismissViewController:(id)sender;
  18. @end