我想我的應用程序支持PortraitUpSideDown方向。 我已經改變了info.p名單,以反映這一點,並試圖執行一個視圖改變爲測試UIInterfaceOrientation Xcode
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
return YES;
return (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
return YES;
}
但鑑於沒有響應。 在應用程序響應之前,我是否需要在所有視圖上實現此功能? 是否有需要更改的Xib設置?
這不是一個Xcode問題。這是一個____問題,你用你正在使用的顯示庫來填充空白。 – Almo 2012-03-02 19:49:33