Guest User

Untitled

a guest
Oct 18th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. //
  2. // PhoneGap ! ChildBrowserCommand
  3. //
  4. //
  5. // Created by Jesse MacFadyen on 10-05-29.
  6. // Copyright 2010 Nitobi. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10. #import "ChildBrowserViewController.h"
  11.  
  12.  
  13. #import "AppDelegate.h"
  14. #ifdef PHONEGAP_FRAMEWORK
  15. #import <PhoneGap/PhoneGapViewController.h>
  16. #else
  17. #import "PhoneGapViewController.h"
  18. #endif
  19.  
  20.  
  21.  
  22. @interface ChildBrowserCommand : PGPlugin<ChildBrowserDelegate> {
  23.  
  24. ChildBrowserViewController* childBrowser;
  25. }
  26.  
  27.  
  28.  
  29.  
  30. //
  31. // NativeControls.h
  32. //
  33. //
  34. // Created by Jesse MacFadyen on 10-02-03.
  35. // MIT Licensed
  36.  
  37. // Originally this code was developed my Michael Nachbaur
  38. // Formerly -> PhoneGap :: UIControls.h
  39. // Created by Michael Nachbaur on 13/04/09.
  40. // Copyright 2009 Decaf Ninja Software. All rights reserved.
  41.  
  42. #import <Foundation/Foundation.h>
  43. #import <UIKit/UIKit.h>
  44. #import <UIKit/UITabBar.h>
  45. #import <UIKit/UIToolbar.h>
  46.  
  47.  
  48. #import "AppDelegate.h"
  49. #ifdef PHONEGAP_FRAMEWORK
  50. #import <PhoneGap/PhoneGapViewController.h>
  51. #else
  52. #import "PhoneGapViewController.h"
  53. #endif
Add Comment
Please, Sign In to add comment