我已将shouldAutorotateToInterfaceOrientation
设置为返回YES以进行定位,但我注意到,当iPhone旋转时,背景也会旋转UIImageView
。如何修复背景以使其不旋转?
答案 0 :(得分:0)
这似乎可以解决问题。我得到了一切都以横向模式修复。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}