NSAttributedString alignment not working on html content

前端 未结 2 1296
醉梦人生
醉梦人生 2021-01-12 18:39

Want to change alignment of html label. Nothing works. I don\'t see any CSS in the HTML. There are no further settings changing the alignment. I also set left alignment dire

2条回答
  •  粉色の甜心
    2021-01-12 19:15

    Well, I found a solution. I assume the alignment doesn't work because it expects this kind of attributes in the html. So I added it to the html:

    text = [@"" stringByAppendingFormat:@"

    %@

    ", text];

    Works with center, left, etc.

提交回复
热议问题