首页 > 移动平台 > 详细

ios kaifa

时间:2016-04-24 06:20:33      阅读:311      评论:0      收藏:0      [点我收藏+]

弹窗提示 

技术分享

 

 {
        ////ios 7 弹窗
//    UIAlertView *alert1=[[UIAlertView alloc]
//        initWithTitle:@"tishi"
//        message:@" ni shu ru de zhi bu zhengque"
//       delegate:nil
//       cancelButtonTitle:@"qu xiao"
//                         otherButtonTitles:nil, nil];
      // [alert1 show];
       
        //ios 8 的弹窗
        UIAlertController *alert2=[UIAlertController alertControllerWithTitle:@"提示" message:@"你输入的值不正确!" preferredStyle:UIAlertControllerStyleAlert];
        [alert2 addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
        [self presentViewController:alert2 animated:NO completion:nil];

 

ios kaifa

原文:http://www.cnblogs.com/laopo/p/5426251.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!