I have a problem that I hope that you can help me.
I use NSMutatableAttributedString
to load html in UILabel
but all time the application crash on
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
self.attrStr = [[NSMutableAttributedString alloc] initWithData:[desc dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
});
I tried to add dispatch_async
but nothing changed.
So Please help me,