dogo / SCLAlertView

Beautiful animated Alert View. Written in Objective-C
MIT License
3.5k stars 534 forks source link

设置富文本后不居中显示了 变成了居左。 #288

Closed yangdehui closed 4 years ago

yangdehui commented 5 years ago

alert.attributedFormatBlock = ^NSAttributedString (NSString value) { NSMutableAttributedString *subTitle = [[NSMutableAttributedString alloc]initWithString:value]; NSRange redRange = [value rangeOfString:currentModel.name options:NSCaseInsensitiveSearch]; [subTitle addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:redRange]; return subTitle; }; 测试发现代码中 textview.attributedText赋值后需重新设置一下textview.textAlignment属性,而您只在初始化做了设置。

dogo commented 5 years ago

English, please and describe your issue