iphone - Html Tag doesn't get render properly in UIWebView -
i loading html string in uiwebview. working fine when tried load html containing <® > tag webview doesn't render properly. example if have "capital one® secured" not rendering tag ® simplay display on webview. appreciated.
you not need enclose ®
in tag marks. instead, should use ®
want registered trademark symbol.
e.g.
nsstring *htmlstring = @"<p>capital one® secured</p>"; [webview loadhtmlstring:htmlstring baseurl:nil];
Comments
Post a Comment