iOS资源库iOS开发经验总结带我飞

ios 快速显示超酷对话框

2015-07-07  本文已影响677人  iCloudEnd

无论开发哪类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];
}

效果

上一篇 下一篇

猜你喜欢

热点阅读