- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
// Return YES if incoming orientation is Portrait
// or either of the Landscapes, otherwise, return NO
return (toInterfaceOrientation == UIInterfaceOrientationPortrait) || UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}
'||'ここですか?「||」とは何ですか?客観的なCの意味ですか?
'||'はOR(ブール値)を意味します –
真剣に.....? (答えはあなた自身のコードサンプルにあります) – Jeroen
ここに尋ねることなく簡単に見つけ出すことができます... –