我在我的iPhone應用程序中使用uiwebview。 我在那裏綁定本地html文件,但它不顯示我正確。 我的HTML文件代碼uiwebview顯示html真的很小...?
<html>
<head>
<title></title>
<style type="text/css">
h1 {font-family:arabic-indic;font-size:14px;font-weight:bold} </style>
</head>
<body>
<table align="center" border="0" width="100%">
<tbody>
<tr>
<td>
<h1>
First Name</h1>
</td>
<td>
<h1>
9898337874</h1>
</td>
</tr>
<tr>
<td>
<h1>
Last Name</h1>
</td>
<td>
<h1>
[email protected]</h1>
</td>
</tr>
<tr>
<td>
<h1>
Image</h1>
</td>
<td>
<img alt="" src="http://wac.450f.edgecastcdn.net/80450F/929jackfm.com/files/2013/01/some-ecards-2.jpg" style="width: 90px; height: 90px; " /></td>
</tr>
</tbody>
</table>
</body>
它顯示在瀏覽器locla正確,當我打開本地計算機的瀏覽器相同的文件。 但代碼中使用
iPhone的UIWebView我敢負荷在app
[tblwebview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle]
pathForResource:@"htmlfile" ofType:@"htm"]isDirectory:NO]]];
for (id subview in tblwebview.subviews)
if ([[subview class] isSubclassOfClass: [UIScrollView class]])
((UIScrollView *)subview).bounces = NO;
感謝
我沒有意識到這個職位是1歲:/ – crown