ฉันกำลังพยายามรับตัวอย่างข้อความที่จัดรูปแบบเป็น html เพื่อแสดงบน iPhone ใน UITableViewCell
จนถึงตอนนี้ฉันมีสิ่งนี้:
NSError* error;
NSString* source = @"<strong>Nice</strong> try, Phil";
NSMutableAttributedString* str = [[NSMutableAttributedString alloc] initWithData:[source dataUsingEncoding:NSUTF8StringEncoding]
options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,
NSCharacterEncodingDocumentAttribute: [NSNumber numberWithInt:NSUTF8StringEncoding]}
documentAttributes:nil error:&error];
ผลงานแบบนี้ ฉันได้รับข้อความบางส่วนที่มี 'Nice' เป็นตัวหนา! แต่ ... มันยังกำหนดฟอนต์ให้เป็น Times Roman ด้วย! นี่ไม่ใช่แบบอักษรที่ฉันต้องการ ฉันคิดว่าต้องตั้งค่าบางอย่างใน documentAttributes แต่ไม่พบตัวอย่างใด ๆ