2013-05-16 66 views
1

在Apple Photos App中,當它從縱向旋轉到橫向時。圖像將在其中心點上旋轉。然而,照片應用程序創建自己只是不旋轉的中心點。iOS - 如何在方向更改時在圖像中心旋轉

的結構是這樣的.. enter image description here

當它旋轉到橫向..它看起來像下面 enter image description here

然後我就平鋪在

頁面(ImageScrollView)
-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation 

有沒有人知道如何讓它在屏幕中心旋轉?

+2

它不會轉動圖像自動。你必須自己做。更改scrollView,ContentSize的幀大小,然後相應地設置您的imageView的框架 – Ushan87

+0

我建議您首先閱讀本文:http://www.techotopia.com/index.php/IPhone_Rotation,_View_Resizing_and_Layout_Handling – Ushan87

回答

1

Ushan87謝謝..

找到了答案.. 設定的圖像幀必須在

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration; 

完成和視圖將旋轉在它的中心

相關問題