我有这些代码行:
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之前工作。
答案 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];