码迷,mamicode.com
首页 > 其他好文 > 详细

UIAlertController 标题文字大小 颜色

时间:2016-01-21 15:45:35      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

NSString *title = [NSString stringWithFormat:@"\n恭喜您获得%d个红包\n", 10];
    NSString *msg = @"\n把红包分享给微信好友,金额随机,可用于购买雪票和雪卡";
    UIAlertController * alert = [UIAlertController alertControllerWithTitle:title
                                                                    message:msg
                                                             preferredStyle:UIAlertControllerStyleActionSheet];
// titile字号处理
    NSMutableAttributedString *hogan = [[NSMutableAttributedString alloc] initWithString:title];
    [hogan addAttribute:NSFontAttributeName
                  value:[UIFont systemFontOfSize:20.0]
                  range:NSMakeRange(0, title.length)];
    [alert setValue:hogan forKey:@"attributedTitle"];
//
    
    UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"给好友发红包" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        [self shareAction];
    }];
    [alert addAction:sureAction];
    

    alert.view.tintColor = APP_MAIN_COLOR;
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消"
                                                           style:UIAlertActionStyleCancel
                                                         handler:nil];
    [alert addAction:cancelAction];
    
    [self presentViewController:alert animated:YES completion:nil];

 

UIAlertController 标题文字大小 颜色

标签:

原文地址:http://www.cnblogs.com/songxing10000/p/5148402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!