我想知道是否有某些方法可以更改标题的字体和颜色 (标题本身和后退按钮)和alertController
在swift?
答案 0 :(得分:1)
使用code
以下的KVC为我ios8
工作。
UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Title label" message:@"" preferredStyle:UIAlertControllerStyleActionSheet];
NSMutableAttributedString *hogan = [[NSMutableAttributedString alloc] initWithString:@"Testing text"];
[hogan addAttribute:NSFontAttributeName
value:[UIFont systemFontOfSize:50.0]
range:NSMakeRange(24, 11)];
[alertVC setValue:hogan forKey:@"attributedTitle"];
UIAlertAction *button = [UIAlertAction actionWithTitle:@"Label text"
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action){
//add code to make something happen once tapped
}];
UIImage *accessoryImage = [UIImage imageNamed:@"someImage"];
[button setValue:accessoryImage forKey:@"image"];
答案 1 :(得分:0)
在SELECT outE('CONTACT_OF') FROM #34:1
将AppDelegate.m
设置为您想要的颜色。 但它只会改变后退按钮箭头和文字的颜色。
AFAIK您无法更改警报UI内容。尝试使用自定义提醒。自定义提醒太多了。