iOS 5:带样式的loadHTMLString的错误

时间:2011-12-09 09:41:22

标签: ios ios5 ios4

我有这些代码行:

NSString *html = [NSString stringWithFormat:
    @"<html><body><p \"style=\"font-size:%d; text-align:center; color:red; \
    direction:rtl;\">%@</p></body</html>", fontSize, thePage];
mailBody.text = thePage;
[self.page loadHTMLString:html baseURL:nil];

造型完全没有任何效果。因此,direction未设置,color为黑色而不是红色,font-size未设置为我在变量中放置的数字。然而,它在iOS 5之前工作。

1 个答案:

答案 0 :(得分:3)

HTML中存在问题

使用这个

NSString* html = [NSString stringWithFormat:@"<html><body><p style=\"font-size:%d;text-align:center; color:red; direction:rtl;\">%@</p></body></html>",fontSize,thePage];