Estou tentando obter um trecho de texto formatado em html para exibir bem em um iPhone em um UITableViewCell.
Até agora eu tenho o seguinte:
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];
Este tipo de obras. Recebo algum texto com 'Nice' em negrito! Mas ... também define a fonte como Times Roman! Esta não é a face da fonte que eu quero. Acho que preciso definir algo no documentAttributes, mas não consigo encontrar nenhum exemplo em nenhum lugar.