如何在ios中显示文本和html图像链接

时间:2015-12-02 06:28:46

标签: html ios objective-c iphone

我有一种情况我需要用图像显示描述文字。 我的示例说明如下:

Test Article with Image and LinksTest Article with Image and Links<img alt="" src="http://stgen.eenaduindia.com/2015/Nov/2BF7AA1A-8036-4139-81FC-B9694D157F11_L_styvpf.gif" height="252" width="400" /><a href="http://eenaduindia.com">eenaduindia.com</a><a href="http://google.co.in">google.com</a>

首先是文本然后是图像,然后是文本和图像。如何在不使用webview的情况下本地显示。请给出任何建议或现成的源来实现和呈现上述文本。

更新: 我们可以异步加载到textview吗

1 个答案:

答案 0 :(得分:1)

您可以为此编写HTML代码并在UITextView中显示。

    NSString *htmlString = @"<html> ... </html>";
    [textViewObject setValue:htmlString forKey:@"contentToHTMLString"];