Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

guicocoa/photopicker-ios

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

This library is designed to mimick the core functionality of UIImagePickerController. It also has a few unique features not found Apple's implementation.

  • Full-screen library browser for the iPad
  • Preserves all item metadata (including location data)

Requirements

This library requires the presence of the following frameworks:

  • AssetsLibrary.framework
  • QuartzCore.framework

The project must be built against the iOS 5.0 SDK or higher.

If your project is not setup to use ARC, add -fobjc-arc to all source files for this library in your target's "Compile Sources" build phase.

Usage

Add the "GCImagePickerController" folder to your project. Import the main header where you intend to use the picker.

#import "GCImagePickerController.h"

Use the picker.

// create picker
GCImagePickerController *picker = [GCImagePickerController picker];

// set custom action title and block
picker.actionTitle = @"Upload";
picker.selectedItemsBlock = ^(NSSet *URLs) {
    NSLog(@"%@", URLs);
};

// finish up and present
picker.finishBlock = ^{ // this is optional
    [self dismissViewControllerAnimated:YES completion:nil];
};
[self presentViewController:picker animated:YES completion:nil];