NBNPhotoChooser 0.2.1

NBNPhotoChooser 0.2.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2015

Maintained by Piet Brauer.



  • By
  • Piet Brauer

An example implementation of the Tumblr Photo Chooser.

Usage

Example Usage:

#import <NBNPhotoChooser/NBNPhotoChooserViewController.h>

- (void)choosePhoto:(id)sender {
    NBNPhotoChooserViewController *photoChooserViewController = [[NBNPhotoChooserViewController alloc] initWithDelegate:self];
    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:photoChooserViewController];
    [self presentViewController:navController animated:YES completion:nil];
}

#pragma mark - NBNPhotoChooserViewControllerDelegate

- (void)photoChooserController:(NBNPhotoChooserViewController *)photoChooser didChooseImage:(UIImage *)image {
    self.commentToolbar.chosenImage = image;
}

Contributing

Contributions are highly appreciated, just open up an issue or a pull request.