ios 快速显示超酷对话框

作者: iCloudEnd | 来源:发表于2015-07-07 08:38 被阅读677次

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

    效果

    相关文章

      网友评论

      本文标题:ios 快速显示超酷对话框

      本文链接:https://www.haomeiwen.com/subject/lbbyqttx.html