我只是在iPad屏幕上创建UIWebView
。
UIWebView
框架:x = 60,y = 53,w = 258,h = 274
现在我只是在网页浏览中显示Google.com,网页视图就会显示它。
但该网站不适合我的网页浏览,即我必须水平和垂直滚动才能在我的网页浏览中查看整个网页。
我也试过
webView.scalesPageToFit=YES;
webView.contentMode=UIViewContentModeScaleAspectFit;
但没有结果。
答案 0 :(得分:0)
您应该实现UIWebViewDelegate,然后将其分配给您的控制器。
界面看起来像这样:
@interface WebView : UIViewController<UIWebViewDelegate> {
UIWebView *_webView;
}
@property (nonatomic, retain) UIWebView *webView;
@end
然后执行:
@implementation WebSection
@synthesize webView = _webView;
- (id)initWithId:(short)sid
{
self = [super init];
if (self)
{
self.webView.delegate = self;
self.webView.scalesPageToFit = YES;
}
return self;
}
@end