SDKDemoAppDelegate.h 523 B

1234567891011121314151617
  1. #import <UIKit/UIKit.h>
  2. @interface SDKDemoAppDelegate : UIResponder <
  3. UIApplicationDelegate,
  4. UISplitViewControllerDelegate>
  5. @property(strong, nonatomic) UIWindow *window;
  6. @property(strong, nonatomic) UINavigationController *navigationController;
  7. @property(strong, nonatomic) UISplitViewController *splitViewController;
  8. /**
  9. * If the device is an iPad, this property controls the sample displayed in the
  10. * right side of its split view controller.
  11. */
  12. @property(strong, nonatomic) UIViewController *sample;
  13. @end