UIAlertView/UIActionSheet 的替代品,支持 iPhone/iPad 和设备旋转。
请将以下内容添加到您的 CocoaPods Podfile 中
pod 'MCModalView', '~> 0.2'
或作为 git 子模块克隆,
或者直接将 MCModalView
文件夹中的文件复制到您的项目中。
初始化并显示警告如下所示
MCAlertView *alertView1 = [MCAlertView alertViewWithTitle:@"Alert 1" message:@"This is a message." actionButtonTitle:@"OK" cancelButtonTitle:@"Cancel" completionHandler:^(BOOL cancelled) {
NSLog(@"Alert 1 cancelled? %d", cancelled);
}];
[alertView1 show];
初始化并显示操作表如下所示
[[MCActionSheet actionSheetWithTitle:nil message:nil cancelButtonTitle:@"Cancel" actionButtonTitles:@[@"Add a Contact", @"Choose from Address Book"] completionHandler: ^(BOOL cancelled, NSUInteger selectedActionIndex) {
NSLog(@"Action Sheet cancelled? %d Selected? %lu", cancelled, selectedActionIndex);
}] show];
您可以通过配置 tintColor
来更改 tintColor。
alertView1.tintColor = [UIColor colorWithRed:0.2 green:0.3 blue:0.6 alpha:1];
通过将 font
属性设置在 titleLabel
、messageLabel
、actionButton
和 cancelButton
上来更改使用的字体。
MCModalView 使用 MIT 许可协议。