Skip to content

Latest commit

 

History

History
128 lines (91 loc) · 4.14 KB

README.md

File metadata and controls

128 lines (91 loc) · 4.14 KB

My other works

[http://leverdeterre.github.io] (http://leverdeterre.github.io)

JMActionSheetDescription

ActionSheet and UIActivityViewController replacement, using a descriptor component.

Twitter License MIT Cocoapods Platform

Changelog

0.4.6 :

  • FIX autorotate,
  • FIX iOS7 crash,
  • Starting autolayout implementation and rotation support

0.4.5 :

  • Add support for iOS9,
  • Add support of UITraitCollection,
  • Add support of UIPopoverPresentationController.

0.4.2 :

  • Add multiple pictures selecion support.

0.4.0 :

  • Add UICollectionView support.

Screenshots

Image Image Image Image Image Image Image Image

Installation & Usage

JMActionSheetDescription is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "JMActionSheetDescription"

Manual creation

//init your description
JMActionSheetDescription *desc = [[JMActionSheetDescription alloc] init];

//Configure your colors
desc.actionSheetTintColor = [UIColor grayColor];
desc.actionSheetCancelButtonFont = [UIFont boldSystemFontOfSize:17.0f];
desc.actionSheetOtherButtonFont = [UIFont systemFontOfSize:16.0f];

//Cancel item
JMActionSheetItem *cancelItem = [[JMActionSheetItem alloc] init];
cancelItem.title = @"Cancel";
desc.cancelItem = cancelItem;

//Can configure a context for your action .. an url ? image ? (work in progress)
JMActionContextItem *contextItem = [[JMActionContextItem alloc] init];
contextItem.image = [UIImage imageNamed:@"gif_experiments"];
contextItem.imageHeight = 200.0f;
desc.contextItem = contextItem;
desc.title = @"Available actions for component";

//item + block
JMActionSheetItem *itemShare = [[JMActionSheetItem alloc] init];
itemShare.title = @"last action";
itemShare.action = ^(void){
    NSLog(@"last action pressed");
};

//Pickeritem + block
JMActionSheetPickerItem *pickerItem = [[JMActionSheetPickerItem alloc] init];
    pickerItem.elements = @[@"One", @"Two", @"three", @"Four"];
    pickerItem.pickerAction = ^(NSString *selectedValue){
        NSLog(@"selectedValue %@",selectedValue);
    };

desc.items = @[itemShare,pickerItem];
[JMActionSheet showActionSheetDescription:desc inViewController:self];

Shortcuts for creation

To present a picker (JMPickerActionSheet)

[JMPickerActionSheet showPickerActionSheetElements:@[@"One", @"Two", @"three", @"Four"]
                                    didSelectBlock:^(NSString *selectedValue){
                                                    NSLog(@"selectedValue %@",selectedValue);}
                                            title:@"JMPickerActionSheet methods"
                                inViewController:self];

Present a mutliple images choice (JMImagesActionSheet)

[JMImagesActionSheet showImagesActionSheetImages:@[
                        [UIImage imageNamed:@"gif_experiments"],
                        [UIImage imageNamed:@"gif_experiments"],
                        [UIImage imageNamed:@"gif_experiments"]]
                                didSelectBlock:^(id selectedValue) {
                                                NSLog(@"didSelectBlock %@",selectedValue); }
                                        title:@"The title"
                            inViewController:self];

License

JMActionSheetDescription is available under the MIT license. See the LICENSE file for more info.