UIActionSheet 的子类,用于为给定索引设置按钮的文本颜色。
1. 通过 Cocoapods
pod install 'KKActionSheet'
2. 您可以将 src/KKActionSheet 文件夹拖到您的项目中。此库必须启用 ARC。
首先
#import "KKActionSheet.h"
然后,例如,在您的控制器中
- (IBAction)actionShowActionSheet:(id)sender
{
KKActionSheet *sheet = [[KKActionSheet alloc] initWithTitle:@"Test actionsheet" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Button index 1",@"Button index 2", nil];
[sheet setTitlesTextColor:[UIColor blackColor]];
[sheet setTextColors:@[[UIColor redColor], [UIColor blueColor]] forButtonIndexes:@[@(0),@(1)]];
[sheet showInView:self.view];
}
代理和其他属性和方法都与 UIActionSheet 相同。
MIT 许可证