-1
我創建了一個UIwebview來獲得一個網頁,我有一個關於大小的問題。當我轉動我的iphone時,網頁不會佔用所有的屏幕。請幫助我,當我打開手機的網頁填滿所有的屏幕。 謝謝UIwebView的大小iphone
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *fullURL = @"http://www.google.com";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_viewWeb loadRequest:requestObj];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
截取您的設備上實際發生的情況。 –