UIAlertController custom font, size, color

后端 未结 25 1998
遥遥无期
遥遥无期 2020-11-22 09:06

I am using new UIAlertController for showing alerts. I have this code:

// nil titles break alert interface on iOS 8.0, so we\'ll be using empty strings
UIAle         


        
25条回答
  •  误落风尘
    2020-11-22 09:54

    A bit clunky, but this works for me right now to set background and text colors. I found it here.

    UIView * firstView = alertController.view.subviews.firstObject;
        UIView * nextView = firstView.subviews.firstObject;
        nextView.backgroundColor = [UIColor blackColor];
    

提交回复
热议问题