Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. UIImagePickerController *picker = [[UIImagePickerController alloc] init];
  2. picker.delegate = self;
  3. picker.allowsEditing = YES;
  4. picker.sourceType = UIImagePickerControllerSourceTypeCamera;
  5. [self presentViewController:picker animated:YES completion:NULL];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement