Apple продемонстрировала фото для iPad. В своей демонстрации они сказали, что вы можете перевернуть iPad, и он перевернет изображение.
Как достигается этот результат?
Я читал об UIInterfaceOrientation весь день, и я потерян
Любая помощь будет оценена.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
// NSLog(@"orientation: %@", [orientation )
if(orientation==UIInterfaceOrientationPortrait ||orientation==UIInterfaceOrientationPortraitUpsideDown) {
//Code
return NO;
}
if (orientation==UIInterfaceOrientationLandscapeRight ||orientation==UIInterfaceOrientationLandscapeLeft ) {
//Code
return YES;
}
return NO;
}