Skip to content

Instantly share code, notes, and snippets.

@mahemoff
Created August 16, 2012 22:17
Show Gist options
  • Save mahemoff/3374114 to your computer and use it in GitHub Desktop.
Save mahemoff/3374114 to your computer and use it in GitHub Desktop.
iOS example
// Async web fetch with JSON parse
[NSURLConnection sendAsynchronousRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"url"]]
queue:nil completionHandler:^(NSURLResponse *r, NSData *d, NSError *e) {
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:d
options:0
error:nil];
}];
// Using the camera
- (void)takePicture:(id)sender
{
UIImagePickerController *c = [[UIImagePickerController alloc] init];
[c setDelegate:self];
[self presentViewController:c animated:YES completion:nil];
}
- (void)imagePickerController:(UIImagePickerController *)ipc didFinishPickingMediaWithInfo:(NSDictionary *)d
{
UIImage *img = [d objectForKey:UIImagePickerControllerOriginalImage];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment