我怎样才能让我的应用程序始终处于纵向模式。如果我旋转 iPhone,它不应该以横向模式显示应用程序。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortrait);
return YES;
}
在我旋转 iPhone 应用程序时以横向模式显示此编码后。我怎样才能让应用程序一直处于纵向模式。