CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2016 |
Maintained by Jose Aponte.
JKAlertView is a simple and beautiful alert view, you can use it to show remote notifications or whatever you want.
JKAlertView requires iOS 7+ and is compatible with iPhone 4 and later.
You only need to create a JKAlertView instance and set the needes values.
JKAlertView *alertView = [[JKAlertView alloc] initWithFontName:@"verdana"];
alertView.headerImage = [UIImage imageNamed:@"bg_img.jpg"];
alertView.titleText = @"The Git";
alertView.detailText = @"Is a version control system that is used for software development and other version control tasks.";
alertView.linkText = @"git-scm";
alertView.url = @"https://git-scm.com/";
alertView.footerText = @"Wikipedia";
[alertView show];
headerImage
(requiered) The header image in the top of the alert, minimum size is 270x155. You can use large images long as you keep the aspect ratio 54:31.titleText
(requiered) The text of the title alert, maximum 32 characters .detailText
(requiered) The body or content text of the alert, maximum 200 characters.titleTextColor
(optional) The text color of the title.detailTextColor
(optional) The text color of the detail.linkText
(optional) The text of the link.linkTextColor
(optional) The text color of the link.url
(optional) The string url of the link.footerText
(optional) The text of the footer.