UIAlertController

自从iOS8以后,新出了一个UIAlertController使UIAlertView已经淡出程序猿的开发使用。
UIAlertController的使用更加的便捷,使用block使代码更加的紧凑和直观,但是想要修改UIAlertController中的标题、message的文字和大小的时候,只能使用KVC的方法来进行修改,闲话不说,直接上代码

  • 修改标题文字颜色和大小
// 创建NSMutableAttributedString
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:self.title];
    [str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:font == 15] range:NSMakeRange(0, message.length)];
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(0, message.length)];
    // 使用KVC设置标题文字:attributedTitle
    [self setValue:str forKey:@"attributedTitle"];
  • 修改message的文字颜色和大小
// 创建NSMutableAttributedString
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:self.title];
    [str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:font == 15] range:NSMakeRange(0, title.length)];
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(0, title.length)];
    // 使用KVC设置message文字:attributedMessage
    [self setValue:str forKey:@"attributedMessage"];
  • 修改按钮的文字颜色,使用方法有两种,但是有一定的区别
  • 方法一
UIAlertAction *action = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
// 设置按钮的文字颜色:titleTextColor
[action setValue:[UIColor yellowColor] forKey:@"titleTextColor"];
  • 方法二
// 使用这个方法在点击按钮后,不做操作按钮的文字颜色会变回系统颜色,即为假象
alertController.view.tintColor = [UIColor blueColor];
  • 给按钮添加图片,按钮图片只能放在文字的左边,具体还能不能放在右边或者设置按钮的背景图片还没设置成功,如果哪位大神可是的请告诉小白
UIAlertAction *action = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
UIImage *img = [UIImage imageNamed:buttonImage];
// 图片渲染模式 Original:始终绘制图片原始状态,不使用Tint Color
    img = [img imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    [action setValue:img forKey:@"image"];
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值