在iphone中开发全横屏应用的方法和步骤
1. 新建一个view based的项目
2. 在info.plist中增加一项:
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
3. View- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
4. 在interface builder中,点选窗口右上角的旋转图标,把窗口视图转成水平的。
做完第二步,预览程序状态栏已经是横屏的了,不过,坐标还不是。第三步的代码加上就好了。