ios弹出框

ios9.0以后再用uialertview就会有警示提示,在苹果开发中把warnning要当做错误处理,所以这种问题不能忽略 
//初始化提示框;
   UIAlertController *alert = [UIAlertController alertControllerWithTitle:@提示 message:@按钮被点击了 preferredStyle:  UIAlertControllerStyleAlert];
   
   [alert addAction:[UIAlertAction actionWithTitle:@确定 style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
     //点击按钮的响应事件;
   }]];
   
   //弹出提示框;
   [self presentViewController:alert animated: true completion:nil];
关闭弹出框的方式和关闭普通网页的一样,这种弹出方式和以前的UIAlertView的区别还是很大的,体现在展现,关闭,按钮点击事件等

你可能感兴趣的:(ios开发小点积累)