12345678910111213141516171819202122232425262728 |
- //
- // RootViewController.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/29.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RootViewController : UIViewController
- - (instancetype)initWithRootViewController:(UIViewController*)rootViewController;
- @property (nonatomic, strong) IBOutlet UIView* embedView;
- @property (nonatomic, strong) IBOutlet UILabel* titleLabel;
- @property (nonatomic, strong) IBInspectable NSString* theme;
- @property (nonatomic, strong) UINavigationController* embedViewController;
- @end
- @interface UIViewController (XenonSDK)
- - (void)sdk_dismissViewController:(id)sender;
- @end
|