如何?ios螢幕的橫豎屏自適應)如何?ios螢幕的橫豎屏自適應
來源:互聯網
上載者:User
如何?ios螢幕的橫豎屏自適應首先在UIViewController的-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)
interfaceOrientation方法中設定裝置要支援的deviceOrientation;在UIViewController的-(void)willRotateToInterfaceOrientation(UIInterfaceOrientation)
toInterfaceOrientation duration:(NSTimeInterval)
duration或者-(void)willAnimateRotationToInterfaceOrientation(UIInterfaceOrientation)
interfaceOrientationduration:(NSTimeInterval)
duration重新設定所有子view的frame 當UIView設定成自動適配螢幕(即myView.autoresizesSubviews = YES)時,當我們重新設定myView的frame時(一般旋轉螢幕時我們都會重新設定view的frame),會自動調用 layoutSubviers方法,我們可以在該方法中判斷螢幕的方向,並調整各子view的frame。 如果工層中有一個superViewController,然後在該控制器的試圖上加上了另一個subViewController的 view,無論如何subViewController的以上三個方法都不會被調用,這個時候,可以在superViewController的-(void)willRotateToInterfaceOrientation(UIInterfaceOrientation)
toInterfaceOrientation duration:(NSTimeInterval)
duration或者-(void)willAnimateRotationToInterfaceOrientation(UIInterfaceOrientation)
interfaceOrientationduration:(NSTimeInterval)
duration方法中重新設定subViewController的view。首先在UIViewController的-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)
interfaceOrientation方法中設定裝置要支援的deviceOrientation;在UIViewController的-(void)willRotateToInterfaceOrientation(UIInterfaceOrientation)
toInterfaceOrientation duration:(NSTimeInterval)
duration或者-(void)willAnimateRotationToInterfaceOrientation(UIInterfaceOrientation)
interfaceOrientationduration:(NSTimeInterval)
duration重新設定所有子view的frame 當UIView設定成自動適配螢幕(即myView.autoresizesSubviews = YES)時,當我們重新設定myView的frame時(一般旋轉螢幕時我們都會重新設定view的frame),會自動調用 layoutSubviers方法,我們可以在該方法中判斷螢幕的方向,並調整各子view的frame。 如果工層中有一個superViewController,然後在該控制器的試圖上加上了另一個subViewController的 view,無論如何subViewController的以上三個方法都不會被調用,這個時候,可以在superViewController的-(void)willRotateToInterfaceOrientation(UIInterfaceOrientation)
toInterfaceOrientation duration:(NSTimeInterval)
duration或者-(void)willAnimateRotationToInterfaceOrientation(UIInterfaceOrientation)
interfaceOrientationduration:(NSTimeInterval)
duration方法中重新設定subViewController的view。