user2197875
user2197875

Reputation: 171

Custom UIWebview

My app having two strings with html code .

while loading html string in to UIWebView as a plain text we do as below

 [webView loadHTMLString:second baseURL:nil];

But now in my webview i want to place

     1---->a label
    next---->UITableView
    next--->another label

where as i want to assign those html string data as a plain text in UILabel.

How can i do this?I don't know how to proceed please help me!

Upvotes: 1

Views: 284

Answers (1)

Lithu T.V
Lithu T.V

Reputation: 20021

Create what you want to show in html and use the same method to load

[webView loadHTMLString:second baseURL:nil];

Upvotes: 1

Related Questions