CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

CVCustomActionSheet 0.11

CVCustomActionSheet 0.11

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

Maintained by Coulton Vento.



A super-simple, customizable iOS 8 - styled ActionSheet... Now with blocks!

Usage

  1. Import “CVCustomActionSheet.h”
  2. Init
CVCustomActionSheet *actionSheet = [[CVCustomActionSheet alloc] init];
  1. Add actions
[actionSheet addAction:[CVCustomAction actionWithTitle:@"Option"
                                                  type:CVCustomActionTypeDefault
                                               handler:nil]];

[actionSheet addAction:[CVCustomAction actionWithTitle:@"Cancel"
                                                  type:CVCustomActionTypeCancel
                                               handler:nil]];
  1. And present!
[actionSheet show];

Customization

Check out CVCustomActionSheetButtonConfiguration.h, you can customize literally everything.