無論開發(fā)哪類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];
}
效果