MCModalView 0.3

MCModalView 0.3

测试已测试
Lang语言 Obj-CObjective C
许可协议 MIT
发布最新发布2015年7月

Matthew Cheok 维护。



  • 作者
  • Matthew Cheok

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

屏幕截图

Screenshot Screenshot

安装

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

pod 'MCModalView', '~> 0.2'

或作为 git 子模块克隆,

或者直接将 MCModalView 文件夹中的文件复制到您的项目中。

使用 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 属性设置在 titleLabelmessageLabelactionButtoncancelButton 上来更改使用的字体。

许可协议

MCModalView 使用 MIT 许可协议。