MCAlertView 0.1

MCAlertView 0.1

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最新发布2016年11月

Matthew Cheok 维护。



  • 作者:
  • Matthew Cheok

支持 iPhone/iPad 和设备旋转的 UIAlertView 替代品。

截图

Screenshot

安装

将以下内容添加到您的 CocoaPods Podfile

pod 'MCAlertView', '~> 0.1'

或将其克隆为 git 子模组,

或者只是将 MCAlertView 文件夹中的文件复制到您的项目中。

使用 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];

通过设置 titleLabelmessageLabelactionButtoncancelButton 上的 font 属性来更改使用的字体。

许可证

MCAlertView 在 MIT 许可下。