A. 新增一個 View-based Project.
B. 在 Resources 裡, 新增一個背景圖檔(ex: background.jpg).
C. 在 Interface Builder 的 View 裡, 新增一個 UIImageView, 並設定剛剛的背景圖檔.
------------------------------------------------------------------------------------------------------
D. 在 Interface Builder 裡, 點選 View , 在 View Attributes 的 Simulated User Interface Elements 下的 Orientation 選擇: Landscape (風景畫: 代表橫向).
------------------------------------------------------------------------------------------------------
E. 打開 xxx-info.plist 檔, 新增以下一組 Key 與 Value:
Key: Initial interface orientation
Value: Landscape(right home button)
------------------------------------------------------------------------------------------------------
F.在程式裡, 加上一段 code:
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
//return (interfaceOrientation == UIInterfaceOrientationPortrait);
//@add
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
沒有留言:
張貼留言
注意:只有此網誌的成員可以留言。