支持 iPhone/iPad 和设备旋转的 UIAlertView 替代品。
将以下内容添加到您的 CocoaPods Podfile
pod 'MCAlertView', '~> 0.1'
或将其克隆为 git 子模组,
或者只是将 MCAlertView
文件夹中的文件复制到您的项目中。
初始化并显示警告如下
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];
您可以通过设置 tintColor
来更改 tintColor。
alertView1.tintColor = [UIColor colorWithRed:0.2 green:0.3 blue:0.6 alpha:1];
通过设置 titleLabel
、messageLabel
、actionButton
和 cancelButton
上的 font
属性来更改使用的字体。
MCAlertView 在 MIT 许可下。