recherche

Maison  >  Questions et réponses  >  le corps du texte

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中文网2815 Il y a quelques jours335

répondre à tous(2)je répondrai

  • 大家讲道理

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

    Vous pouvez utiliser NSString *htmlString = [NSString stringWithFormat:@"<head><style>body{font-family:arial,Helvetica;font-size:15;word-wrap:break-word;}</style></head>"]; pour l'insérer dans la chaîne renvoyée

    répondre
    0
  • 阿神

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

    Votre méthode d'initialisation n'est pas systématique. Allez voir si cette méthode de logique est fausse

    répondre
    0
  • Annulerrépondre