-
-
Save danneu/3376150 to your computer and use it in GitHub Desktop.
iOS example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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