Guest User

Untitled

a guest
May 27th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // from PickImageAppDelegate.h
  2. @interface PickImageAppDelegate :
  3. NSObject <UIApplicationDelegate,
  4. UIImagePickerControllerDelegate>
  5. {
  6. UIWindow* window;
  7. UIImagePickerController* imagePickerController;
  8. UIImageView* imageView;
  9. }
  10.  
  11. @property (nonatomic, retain) UIWindow *window;
  12.  
  13. - (void)applicationDidFinishLaunching:(UIApplication *)application;
  14. - (void)imagePickerController:(UIImagePickerController *)picker
  15. didFinishPickingImage:(UIImage *)image
  16. editingInfo:(NSDictionary *)editingInfo;
  17. - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker;
  18. @end
Add Comment
Please, Sign In to add comment