码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 开发 弹框 UIAlertView 与UIAlertController

时间:2016-01-02 01:01:07      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:

//View 里面的一个按钮
- (IBAction)showAlert:(id)sender {
    //ios8 之前
    UIAlertView * alert=[[UIAlertView alloc]
                         initWithTitle:@"你好,波多老师"
                         message:@"听说您??有新戏要上映了"
                         delegate:nil
                         cancelButtonTitle:@"我来贡献票房来了"
                         otherButtonTitles:nil, nil
                         ];
    
    [alert show];
    
    //IOS 8 之后
    UIAlertController * newAlert=[UIAlertController
                                  alertControllerWithTitle: @"你好,苍老师"
                                  message:@"听说您也??有新戏要上映了"
                                  preferredStyle:UIAlertControllerStyleAlert
                                  ];
    
    UIAlertAction * newAlertAction=[UIAlertAction
                                    actionWithTitle:@"我来贡献票房来了"
                                    style:UIAlertActionStyleDefault
                                    handler:nil
                                    ];
    //弹框按钮
    [newAlert addAction:newAlertAction];
    
    //初始化弹框
    [self presentViewController:newAlert animated:true completion:nil];
}

 

IOS 开发 弹框 UIAlertView 与UIAlertController

标签:

原文地址:http://www.cnblogs.com/acgk/p/5093941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!