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

ios8 UIAlertController

时间:2014-09-18 13:04:13      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   sp   cti   log   on   c   

ios8 上面,用UIAlertController将UIAlertView和UIActionSheet合二为一了。 

(1)创建普通alert

    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title  message:message  preferredStyle:UIAlertControllerStyleAlert];
    
    // Create the actions.
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelButtonTitle  style:UIAlertActionStyleCancel  handler:^(UIAlertAction *action) {
        NSLog(@"The \"Okay/Cancel\" alert‘s cancel action occured.");
    }];
    
    UIAlertAction *otherAction = [UIAlertAction actionWithTitle:otherButtonTitle  style:UIAlertActionStyleDefault  handler:^(UIAlertAction *action) {
        NSLog(@"The \"Okay/Cancel\" alert‘s other action occured.");
    }];
    
    // Add the actions.
    [alertController addAction:cancelAction];
    [alertController addAction:otherAction];
    
    [self presentViewController:alertController animated:YES completion:nil];

如果UIAlertAction *otherAction这种otherAction多几个的话,它会自动排列成一列。

(2)带有输入框的alert

如果需要在 alertview上面添加输入框等,如下:
[alertController addTextFieldWithConfigurationHandler:^(UITextField *textField) {
        // 可以在这里对textfield进行定制,例如改变背景色
        textField.backgroundColor = [UIColor orangeColor];
    }];

ios8 UIAlertController

标签:style   color   io   os   sp   cti   log   on   c   

原文地址:http://www.cnblogs.com/417460188dy/p/3978824.html

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