iPhoneアプリでuiwebviewを使用しています。ローカルのhtmlファイルにバインドしていますが、適切に表示されません。私の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>
mjain@jkvsolutions.com</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>
ローカル PC ブラウザで同じファイルを開くと、locla ブラウザで適切に表示されます。しかし、iphone uiwebviewでは
アプリにロードするコード
[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;
ありがとう