2
我一直在閱讀這些頁面一段時間,並且一直有一些麻煩讓我的CGRect
正確加載。我知道這是因爲我在viewDidLoad
運行後強制取向,並且我試圖讓CGRect
在之後再次吸引。基本上,這就是我在尋找:設備旋轉後壓扁和扭曲的視圖
-(void)viewDidLoad
{
//mybutton.frame = CGRectMake(...);
//...
}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
當視圖出現,在CGRect
非常壓扁,扭曲,由於視圖的旋轉。