Я разрабатываю приложение с помощью Xcode 4.2, я использую раскадровку
Я пытаюсь сделать приложение вращаемым, но оно не вращается, вот код, который я использую:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown || interfaceOrientation != UIInterfaceOrientationLandscapeRight || interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown|| interfaceOrientation !=UIInterfaceOrientationPortrait);
}
и в информации о проекте у меня есть все поддерживаемые ориентации ....
я что-то упустил?
Спасибо