TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jul 2015 |
Maintained by Matthew Cheok.
UIAlertView/UIActionSheet replacement supporting iPhone/iPad and device rotations.
Add the following to your CocoaPods Podfile
pod 'MCModalView', '~> 0.2'
or clone as a git submodule,
or just copy files in the MCModalView
folder into your project.
Initialize and display alerts like this:
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];
Initialize and display action sheets like this:
[[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];
You can configure tintColor
to change the tintColor.
alertView1.tintColor = [UIColor colorWithRed:0.2 green:0.3 blue:0.6 alpha:1];
Change fonts used by setting the font
property on titleLabel
, messageLabel
, actionButton
and cancelButton
.
MCModalView is under the MIT license.