我有一个奇怪的问题。当我在单个视图应用程序中运行 UIWebView 时,它运行良好,例如,当手机旋转时,webView 会旋转以保持视图直立。但是,如果我向应用程序添加新视图并使用主视图上的按钮打开该视图,则辅助视图中的 webView 会卡在纵向模式。当我旋转手机时,它不会保持直立。UIViewController 之间的唯一区别是一个是主视图,一个是主视图调用的新视图。
这是我切换到第二个视图的代码:
- (IBAction) nextPlotButton:(id)sender
{
NSLog(@"Next Plot");
NextViewController *subClass = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil];
subClass.view.frame = self.view.frame;
subClass.view.autoresizingMask = self.view.autoresizingMask;
[self.view.superview addSubview:subClass.view];
//ARC
nextView = subClass;
}
这是加载第二个视图后的代码
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
NSString *localFilePath = [[NSBundle mainBundle] pathForResource:@"scatterPlot" ofType:@"html"] ;
NSURLRequest *localRequest = [NSURLRequest requestWithURL:
[NSURL fileURLWithPath:localFilePath]] ;
[webView2 loadRequest:localRequest] ;
[self.view addSubview:webView2];
}
谢谢您的帮助!干杯,杰森