1

我想知道是否可以使用 UIAlertController 自定义应用程序警报。我还没有看到任何明确说你可以的东西。有谁知道我可以添加自定义外观的方法,尤其是这些警报上的字体?

4

1 回答 1

0

您可以使用外观时包含在其中。要设置背景颜色,下面是一个示例:

[[UIView appearanceWhenContainedIn:UIAlertController.class, nil] setBackgroundColor:[UIColor yellowColor]];

或着色:

[[UIView appearanceWhenContainedIn:UIAlertController.class, nil] setTintColor:[UIColor whiteColor]];
于 2014-11-12T23:12:38.617 回答