NSHTMLTextDocumentType同步下载图像

时间:2015-06-04 05:53:02

标签: html ios image nsstring nsattributedstring

我正在尝试使用此UITextView

NSAttributedString中显示HTML文字

[[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,NSCharacterEncodingDocumentAttribute: [NSNumber numberWithInt:NSUTF8StringEncoding]} documentAttributes:nil error:nil]

我试图显示的HTML文本中包含图像。问题是,这种方法是同步下载这些。我想处理图像下载和显示自己。有什么方法可以告诉系统不要下载这些图像,而是在执行时分配一个占位符?

1 个答案:

答案 0 :(得分:-1)

您可以同步创建属性字符串,并在处理过程中显示HUD。只需创建一个自定义委托,它将在创建完成时通知您的班级。