这是一个超级简单的、可定制的 iOS 8 风格 ActionSheet... 现在还有 blocks!
CVCustomActionSheet *actionSheet = [[CVCustomActionSheet alloc] init];
[actionSheet addAction:[CVCustomAction actionWithTitle:@"Option"
type:CVCustomActionTypeDefault
handler:nil]];
[actionSheet addAction:[CVCustomAction actionWithTitle:@"Cancel"
type:CVCustomActionTypeCancel
handler:nil]];
[actionSheet show];
查看 CVCustomActionSheetButtonConfiguration.h,您可以自定义几乎所有内容。