検索

ホームページ  >  に質問  >  本文

ios - 从服务器接的数据包含有html格式,使用NSAttributedString显示,但是如何能够修改字体大小。

从服务器接的数据包含有html格式,使用
NSDictionary *dict = @{NSFontAttributeName:[UIFont systemFontOfSize:24.0f]};

[[NSAttributedString alloc] initWithData:@xxxxx"" dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:&dict error:nil];,
不起作用,字体还是很小,如何解决。

PHP中文网PHP中文网2818日前340

全員に返信(2)返信します

  • 大家讲道理

    大家讲道理2017-04-17 18:00:31

    NSString *htmlString = [NSString stringWithFormat:@"<head><style>body{font-family:arial,Helvetica;font-size:15;word-wrap:break-word;}</style></head>"]; を使用して、返された文字列に結合できます

    返事
    0
  • 阿神

    阿神2017-04-17 18:00:31

    あなたの初期化方法は体系的ではありません。このロジックの方法が間違っているかどうかを確認してください

    返事
    0
  • キャンセル返事