您好,登錄后才能下訂單哦!
一般新建一個ViewController都會默認有以下這個函數(shù)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation;
下面我們來定義各種旋轉(zhuǎn)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait); //只支持豎屏
//return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown); //除了倒置,其他方向都支持
//return (interfaceOrientation == UIDeviceOrientationLandscapeRight); //只支持向右橫屏
//return (interfaceOrientation == UIDeviceOrientationLandscapeLeft); //只支持向左橫屏
}
如果不重寫這個函數(shù)(也就是把這個函數(shù)完全注釋),默認是只支持豎屏幕。
如果要在xib視圖變成橫屏,需要在Simulated Metrics的Orientation設置為Landscape。
如果讓程序一啟動就是橫屏顯示,就要在工程設置里的Summary的iPhone/iPod Deployment Info 改變 Supported Device Orientations 的選項
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。