Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以使用 UIAlertController 自定义应用程序警报。我还没有看到任何明确说你可以的东西。有谁知道我可以添加自定义外观的方法,尤其是这些警报上的字体?
您可以使用外观时包含在其中。要设置背景颜色,下面是一个示例:
[[UIView appearanceWhenContainedIn:UIAlertController.class, nil] setBackgroundColor:[UIColor yellowColor]];
或着色:
[[UIView appearanceWhenContainedIn:UIAlertController.class, nil] setTintColor:[UIColor whiteColor]];