我想知道是否可以使用UIAlertController在应用提醒中进行自定义。我还没有看到任何明确表示你能做到的事情。有没有人知道我可以添加自定义外观的方法,特别是这些警报上的字体?
答案 0 :(得分:0)
你可以使用appearanceWhenContainedIn来做到这一点。要设置背景颜色,这是一个例子:
[[UIView appearanceWhenContainedIn:UIAlertController.class, nil] setBackgroundColor:[UIColor yellowColor]];
或浅色:
[[UIView appearanceWhenContainedIn:UIAlertController.class, nil] setTintColor:[UIColor whiteColor]];