iOS中UIAlertController设置自定义标题与内容的方法
来源:爱站网时间:2020-01-02编辑:网友分享
众所周知,uialertcontroller设定的标题是黑色,但在很多情况下,我们都会对颜色进行修改,接下来是爱站技术频道小编为大家介绍的iOS中UIAlertController设置自定义标题与内容的方法,一起来学习吧!
众所周知,uialertcontroller设定的标题是黑色,但在很多情况下,我们都会对颜色进行修改,接下来是爱站技术频道小编为大家介绍的iOS中UIAlertController设置自定义标题与内容的方法,一起来学习吧!
第三方控件
第一种方法当然就是使用第三方的Alert控件了,现在Github上有着众多的Alert控件(如SCLAlertView等),相信有很多都可以满足大家的需求,只要使用Cocoapods添加添加第三方库就可以了。
KVC方法
但是也有一些人,不愿意去使用第三方库,而是想要使用系统的UIAlertController,这样当然也是可以的。苹果公司并没有完全的封死对UIAlertController的定制,而是修改为了使用KVC的方法进行定制。如果要自定义标题和内容,可以通过NSAttributedString把字体和颜色设置好,然后在通过KVC的方法进行设置,就可以了。
下面是一个示例代码和对应的截图:
- (void)testAlert { UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleAlert]; [alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]]; NSDictionary *titleAttr = @{ NSFontAttributeName:[UIFont boldSystemFontOfSize:20], NSForegroundColorAttributeName:[UIColor greenColor] }; NSAttributedString *attributedTitle = [[NSAttributedString alloc] initWithString:@"测试有颜色标题" attributes:titleAttr]; [alert setValue:attributedTitle forKey:@"attributedTitle"]; NSDictionary *messageAttr = @{ NSFontAttributeName:[UIFont systemFontOfSize:12], NSForegroundColorAttributeName:[UIColor redColor] }; NSAttributedString *attributedMessage = [[NSAttributedString alloc] initWithString:@"测试有颜色文本" attributes:messageAttr]; [alert setValue:attributedMessage forKey:@"attributedMessage"]; [self presentViewController:alert animated:YES completion:nil]; }
屏幕截图
关于自定义标题和内容就说这么些了,主要还是要看代码才能明白。
总结
以上就是爱站技术频道小编介绍的iOS中UIAlertController设置自定义标题与内容的方法,本文还有许多不足之处,希望本文的内容对大家的学习有帮助。