我想更改 ui 警报视图的文本颜色和背景颜色。我正在使用以下代码, UILabel *theTitle = [alertView valueForKey:@"_titleLabel"]; [theTitle setTextColor:[UIColor whiteColor]];
UILabel *theBody = [alertView valueForKey:@"_bodyTextLabel"];
[theBody setTextColor:[UIColor whiteColor]];
UIImageView *backgroundImageView = (UIImageView *)[alertView valueForKey:@"_backgroundImageView"];
[backgroundImageView setImage:[UIImage imageNamed:@"background.png"]];
这在 ios 6 中运行良好。但升级到 ios 7 后,此方法不起作用。我不想创建自定义 uialertview。请提出任何简单的解决方案来解决此问题。