无论开发哪类app都必不可少alert,而ios原生的又过于丑陋。今天给大家介绍一款开源的alert组件,https://github.com/dogo/SCLAlertView
简单的demo
-(void) showTipMessage
{
SCLAlertView *alert = [[SCLAlertView alloc] init];
alert.backgroundType = Blur;
UIViewController * rootVC=[[[UIApplication sharedApplication] delegate] window].rootViewController;
[alert showNotice:rootVC
title:NSLocalizedString(@"提示" ,nil)
subTitle: [NSString stringWithFormat:NSLocalizedString(@"抱歉默认分组和历史纪录不能修改或删除",nil)]
closeButtonTitle:NSLocalizedString(@"确定",nil)
duration:0.0f];
}
效果
网友评论