TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Nov 2016 |
Maintained by Matthew Cheok.
UIAlertView replacement supporting iPhone/iPad and device rotations.
Add the following to your CocoaPods Podfile
pod 'MCAlertView', '~> 0.1'
or clone as a git submodule,
or just copy files in the MCAlertView
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];
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
.
MCAlertView is under the MIT license.