BBWeeAppController.h 846 B

12345678910111213141516171819202122232425262728
  1. @protocol BBWeeAppController
  2. - (UIView *)view;
  3. @optional
  4. @property (nonatomic, retain) id host;
  5. - (void)viewWillDisappear;
  6. - (void)viewDidAppear;
  7. - (void)setPresentationView:(id)presentationView;
  8. - (float)presentationHeight;
  9. - (void)unloadPresentationController;
  10. - (id)presentationControllerForMode:(int)mode;
  11. - (id)launchURLForTapLocation:(CGPoint)tapLocation;
  12. - (id)launchURL;
  13. - (void)loadView;
  14. - (void)clearShapshotImage;
  15. - (void)unloadView;
  16. - (void)loadFullView;
  17. - (void)loadPlaceholderView;
  18. - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
  19. - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
  20. - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation;
  21. - (void)viewDidDisappear;
  22. - (void)viewWillAppear;
  23. - (float)viewHeight;
  24. @end