A super-simple, customizable iOS 8 - styled action sheet... Now with blocks!
- Import “CVCustomActionSheet.h”
- Init
CVCustomActionSheet *actionSheet = [[CVCustomActionSheet alloc] init];
- Add actions
[actionSheet addAction:[CVCustomAction actionWithTitle:@"Option"
type:CVCustomActionTypeDefault
handler:nil]];
[actionSheet addAction:[CVCustomAction actionWithTitle:@"Cancel"
type:CVCustomActionTypeCancel
handler:nil]];
- And present!
[actionSheet show];
Check out CVCustomActionSheetButtonConfiguration.h, you can customize literally everything.