ビューの寸法が間違っています。私は横向きのみを実行していますが、ビューは縦向きの寸法を報告しています "View Width = 768.000000 Height = 1024.000000" それを修正する方法はありますか? 試した自動回転をいじってみました
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft|| interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
と
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}
ビューでは問題ないように見えますが、寸法が本当に私のアプリをいじっています。