嗨,我正在開發小型iPhone應用程序。我得到這樣的服務器字符串在IOS7中顯示html標記值iphone
You can download the MyApp on the Google Play store:<a href='https://play.google.com/store/apps/details?id=com.myapp' style='display:inline-block;padding:0px;margin-left:10px'>MyApp</a>",
我想顯示它爲普通字符串與MyApp文本作爲鏈接。這個怎麼做。有沒有辦法做到這一點。 需要幫助。謝謝。
我試過,但仍然沒有工作
NSAttributedString* attrStr = [[NSAttributedString alloc]
initWithString:@「You can download the MyApp on the Google Play store:<a href='https://play.google.com/store/apps/details?id=com.myapp' style='display:inline-block;padding:0px;margin-left:10px'>MyApp</a>"
attributes:[cell.answer.attributedText attributesAtIndex:0 effectiveRange:NULL]];
cell.answer.attributedText = attrStr;
'NSAttributedString'? 'UIWebView'? – Larme
我使用普通的NSString,並沒有在webview中顯示。這是正常的標籤。 – nilkash
'NSAttributedString'等等。 – Larme