UIAlertController background color iOS10

这一生的挚爱 提交于 2019-12-03 13:49:21

问题


Code that I wrote for iOS9, worked really well:

UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Select source"
                                                                   message:nil
                                                            preferredStyle:UIAlertControllerStyleActionSheet];
    alert.view.backgroundColor = DARK_BLUE;
    alert.view.tintColor = NEON_GREEN;
    UIView *subview = alert.view.subviews.firstObject;
    UIView *alertContentView = subview.subviews.firstObject;
    alertContentView.backgroundColor = DARK_BLUE;
    alertContentView.layer.cornerRadius = 10;

My point of view is that UIAlertController is inheriting from UIViewController, and UIViewController have property UIView that can be changed. And this is working. Now, that view inherited from UIViewController have it's own subview that is contentView showed as Alert. I can access it as firstObject in array of subviews. Now, why message for sending background color isn't working anymore? Do anyone know some new solution?


回答1:


For everyone that will bump into the same problem, I've found the solution:

UIAlertController.view contains one subview, that is only container.

That subview contains subview that contains two it's own subviews, one is container, and another is layer for blurring it.

So, it needs for in loop to iterate through that two subviews and change background color of both.

Full code:

UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"Select source"
                                                                   message:nil
                                                            preferredStyle:UIAlertControllerStyleActionSheet];
    alert.view.tintColor = NEON_GREEN;

    UIView *firstSubview = alert.view.subviews.firstObject;

    UIView *alertContentView = firstSubview.subviews.firstObject;
    for (UIView *subSubView in alertContentView.subviews) { //This is main catch
        subSubView.backgroundColor = DARK_BLUE; //Here you change background
    }



回答2:


In Swift 3.0

let FirstSubview = alertController.view.subviews.first
    let AlertContentView = FirstSubview?.subviews.first
    for subview in (AlertContentView?.subviews)! {
        subview.backgroundColor = UIColor.black
        subview.layer.cornerRadius = 10
        subview.alpha = 1
        subview.layer.borderWidth = 1
        subview.layer.borderColor = UIColor.yellow.cgColor
    }



回答3:


I use this:

    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Alert!"
                                                                       message:@"Message of alert"
                                                                 preferredStyle:UIAlertControllerStyleAlert];

        UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"Ok" 
                                                                style:UIAlertActionStyleDefault
                                                              handler:^(UIAlertAction * action) {

                                                                  //Your code
                                                              }];
        [alert addAction:defaultAction];

        UIView * topview = alert.view.subviews.firstObject;
        UIView * colorView = topview.subviews.firstObject;
        colorView.backgroundColor = [UIColor yellowColor];
        colorView.layer.cornerRadius = 10;
        [self presentViewController:alert animated:YES completion:nil];


来源:https://stackoverflow.com/questions/39852020/uialertcontroller-background-color-ios10

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!