0
我在我的project.Where使用的UIWebView
的框架在web視圖中的教改嘗試是從HTML數據填補做下面這樣的代碼:的UIWebView +內容適合的WebView
[webView loadHTMLString:[NSString stringWithFormat:@"<html><body><font face=\"Arial\" size=\"3\"</font>%@</body></html>",[[[dict_Response objectForKey:@"objects"]objectAtIndex:0]objectForKey:@"detaildescription"]] baseURL:[NSURL URLWithString:@"http://newsletter.nobelbiocare.com/"]];
現在我設定網頁視圖的框架: -
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if(appDel.ori_appDel == UIInterfaceOrientationPortraitUpsideDown || appDel.ori_appDel == UIInterfaceOrientationPortrait)
{
webView.frame=CGRectMake(30,150,710,450);
}else{
webView.frame=CGRectMake(30,150,930,450);
}
return yes;
}
現在事情發生是在風景模式下的內容在適當的way.But顯示當我移動到肖像模式下,它會自動顯示水平scrolling.I不想要滾動網頁視圖中水平模式.. 請幫我..如何解決此問題。
我用了sizetofit和自動尺寸| autofixing。 但後來它也沒有解決,請幫助我..
Shweta你可以嘗試在'shouldAutorotateToInterfaceOrientation'刷新頁面。 –
@InderKumarRathore感謝您的快速回復。但我試圖做到這一點,但它沒有解決問題。身體標記'%@