2017-11-20 8 views
-1

UIViewでHTMLコンテンツを表示する際に問題があります。続き はUIViewの中に同じHTML応答を表示するにはどのように任意のアイデアを持っていないサービスUIViewでHTMLコンテンツを表示する目的C

EmpTable = "<table width='600' border='0' cellspacing='1' cellpadding='8' bgcolor='#d4d4d4'><tr><th>Employee</th><th>Designation</th><th>Date</th><th>Time</th></tr><tr><td>Work Place</td><td>Emp Join Date</td><td>10-09-2009</td><td>17:06</td></tr><tr><td>Emp Attendance</td><td>Emp Id</td><td>11-09-2017</td><td>17:05</td></tr><tr><td>Employee</td><td>Employee Name</td><td>11-09-2017</td><td>09:04</td></tr><tr><td colspan='4' align='RIGHT'><span style='font-family: Verdana; font-size: xx-small;'><strong><span style='color: red;'>*</span>\U00a0- 24 Hrs Format<br /><br /></strong></span></td></tr></table>"; 

から私のHTML応答です。問題を解消するための助けを探してください。

+0

聞いたのWebViewのを読むことができます?それ以外に必要なことはすべてUIView –

+0

@RajeevはHTMLコンテンツを表示するためにWebビューを使用します –

+0

WebViewを使用すると、あなたの問題が解決されます。 @ラジエフ – GJDK

答えて

0

Webviewを使用するか、UITextViewを試すことができます。

NSAttributedString * str = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil]; 

textview.attributedText = str; 
0

代わりUIViewのあなたはWKWebViewを使用する必要があります。以下は、WKWebViewの使い方の簡単な例です。

WKWebView *webView = [[WKWebView alloc] initWithFrame:self.view.frame]; // change frame that you need 
webView.navigationDelegate = self; 
NSURL *nsurl=[NSURL URLWithString:@"http://www.apple.com"]; 
NSURLRequest *nsrequest=[NSURLRequest requestWithURL:nsurl]; // you can set here HTML content too.  
[webView loadRequest:nsrequest]; 
[self.view addSubview:webView]; 

詳細については、あなたはthis tutorial.

関連する問題