SpringBoard.h 486 B

1234567891011121314151617
  1. @class SBApplication;
  2. @interface SpringBoard : UIApplication
  3. - (void)applicationOpenURL:(NSURL *)url publicURLsOnly:(BOOL)publicOnly;
  4. - (void)relaunchSpringBoard;
  5. - (void)_relaunchSpringBoardNow;
  6. - (void)undim;
  7. - (BOOL)launchApplicationWithIdentifier:(NSString *)identifier suspended:(BOOL)suspended;
  8. @property (nonatomic, retain) UIWindow *window;
  9. @property (readonly) BOOL isLocked;
  10. @property (nonatomic, retain, readonly) SBApplication *_accessibilityFrontMostApplication;
  11. @end