0
我已將shouldAutorotateToInterfaceOrientation
設置爲返回YES以進行定位,但我注意到iPhone旋轉時背景也會旋轉,這是一個UIImageView
。我如何修復背景使其不旋轉?當設備方向更改時,如何防止iPhone背景圖像旋轉?
我已將shouldAutorotateToInterfaceOrientation
設置爲返回YES以進行定位,但我注意到iPhone旋轉時背景也會旋轉,這是一個UIImageView
。我如何修復背景使其不旋轉?當設備方向更改時,如何防止iPhone背景圖像旋轉?
這似乎是個伎倆。我把所有東西都修復成橫向模式。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}