मैं एक UITableViewell में iPhone पर अच्छी तरह से प्रदर्शित करने के लिए HTML में स्वरूपित पाठ का एक स्निपेट प्राप्त करने का प्रयास कर रहा हूं।
अब तक मेरे पास यह है:
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];
इस तरह के काम करता है। मुझे कुछ ऐसे टेक्स्ट मिलते हैं जिनमें बोल्ड 'नाइस' है! लेकिन ... यह टाइम्स रोमन होने के लिए फ़ॉन्ट भी सेट करता है! यह फॉन्ट फेस नहीं है जो मैं चाहता हूं। मैं सोच रहा हूं कि मुझे डॉक्यूमेंट में कुछ सेट करने की जरूरत है। लेकिन, मुझे कहीं भी कोई उदाहरण नहीं मिल रहा है।