0
我正在web視圖中使用我的iphone,並且希望使用標籤以html的形式傳遞數據,以便我可以將文本以粗體和斜體,甚至在字符串的形式。所以請好好幫我解決這個問題。任何幫助將非常可愛。將html轉換爲字符串
我正在web視圖中使用我的iphone,並且希望使用標籤以html的形式傳遞數據,以便我可以將文本以粗體和斜體,甚至在字符串的形式。所以請好好幫我解決這個問題。任何幫助將非常可愛。將html轉換爲字符串
試試這個:
UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 205, 320, 150)];
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"ImageName" ofType:@"png"];
NSString *htmlString = [NSString stringWithFormat:@"<html><body><b style='color:black'>Deleting your account will:<div style='margin-left:220px; margin-top:-27px'><img src='%@'></div></b><ul style='margin-left:-20px; margin-top:-1px; color:gray; font:Arial; font-size:12x'><li> write some line</li><li> write your line</li><li>write your line</li></ul></body></html>", filePath];
// you can modified html string as per your need..
NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseUrl = [NSURL fileURLWithPath: path];
[webView loadHTMLString:htmlString baseURL:baseUrl];
正是你想要什麼?你想要形成一個HTML字符串並且想要在WebView上加載該HTML字符串嗎? –
是的...... –
你正在使用nsurl? –