我正在寻找一种简单的方法来使用NSAttributedString
一个非常简单的消息框,类似于:
NSString *new_item = [NSString stringWithFormat:@"<span style=\"font-family: Helvetica Neue; font-size: 12.0\">%@</span>", @"MOTD HTML String downloaded from website"];
NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[new_item dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"MOTD"
message:attrStr
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
我的上述代码采用从服务器下载的HTML格式字符串,确保文本大小适合屏幕,然后尝试将NSAttributedString
发送到UIAlertView
。但UIAlertView
不喜欢这个。这个问题最简单的方法是什么?(非HTML格式的MOTD不是一个选项)
答案 0 :(得分:14)
将您的属性字符串添加到标签,并将其添加为assessmentoryView以提醒
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Test Attributed String" message:@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil, nil];
UILabel *lbl = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
NSMutableAttributedString *attributedStr = [[NSMutableAttributedString alloc]initWithString:@"Hello red"];
[attributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,5)];
lbl.attributedText = attributedStr;
lbl.textAlignment = NSTextAlignmentCenter;
[alert setValue:lbl forKey:@"accessoryView"];
[alert show];
现在不推荐使用UIAlertView
天。您可以使用UIAlertController
。
答案 1 :(得分:4)
我从@AshishKakkad回答中得到了一个想法(+1)。但是,它的UI不能正确显示。因此,我们向您展示了使用attributedString
格式化邮件的方法。
以下是我的表现:
NSMutableString *message = [NSMutableString string];
NSString *title = @"Message Heading";
[message appendString:title];
[message appendString:@"\n\n• Topic 1"];
[message appendString:@"\n• Topic 2"];
[message appendString:@"\n• Topic 3\n"]; //Important, I have added '\n' at last to have some extra space at bottom.
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"" delegate:self cancelButtonTitle:@"CancelButton" otherButtonTitles:@"OtherButton", nil];
//need to set a label as `accessoryView` of an alert.
[alert setValue:[self getLabelWithMessage:message withTitle:title] forKey:@"accessoryView"];
[alert show];
- (UILabel *)getLabelWithMessage:(NSMutableString *)message withTitle:(NSString *)title {
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
[paragraphStyle setAlignment:NSTextAlignmentLeft];
paragraphStyle.paragraphSpacing = 2.0f;
paragraphStyle.headIndent = 20.0;
paragraphStyle.firstLineHeadIndent = 20.0;
paragraphStyle.tailIndent = -20.0;
NSMutableAttributedString *attribString = [[NSMutableAttributedString alloc]initWithString:message];
[attribString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [message length])];
[attribString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12.f] range:NSMakeRange(0, [message length])];
[attribString addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:12.f] range:NSMakeRange(0, [title length])];
UILabel *label = [[UILabel alloc] init];
[label setAttributedText:attribString];
[label setNumberOfLines:0];
[label sizeToFit];
return label;
}
答案 2 :(得分:2)
lbl.numberOfLines = 0;
当你有多行时
答案 3 :(得分:0)
作为私有API的替代方法,您可以使用https://github.com/AntonPoltoratskyi/NativeUI
pod 'NativeUI/Alert', '~> 1.0'
它看起来完全像本机警报,但是可以配置。
请查看https://stackoverflow.com/a/61047809/6726766了解更多详细信息。