如何讓我的應用程序始終處於肖像模式。如果我旋轉iPhone,它不應該以橫向模式顯示應用程序。只有肖像模式的iPhone應用程序
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortrait);
return YES;
}
經過這種編碼,當我旋轉iPhone應用程序顯示橫向模式。我如何使應用程序始終處於肖像模式。
的欺騙http://stackoverflow.com/questions/10032490/how-to-support-only-portrait-mode-on-an -iphone-app – rishi
下面的答案很好,並且爲了將來的參考,「!=」表示不等於,所以您發佈的代碼會告訴您的應用程序返回除了肖像之外的任何方向。 –