我有一个通用应用程序。我希望我的应用程序可以在 iPhone 的两种方向模式下工作,但仅适用于 iPad 的纵向模式,
如何才能做到这一点?
setOrientationtion
在 iOS5 中没有响应。
我有一个通用应用程序。我希望我的应用程序可以在 iPhone 的两种方向模式下工作,但仅适用于 iPad 的纵向模式,
如何才能做到这一点?
setOrientationtion
在 iOS5 中没有响应。
这将帮助您:
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
// The device is an iPad running iPhone 3.2 or later.
// Rotate to landscape
}
else {
// The device is an iPhone or iPod touch.
// Rotate to portrait
}
您可以在 Xcode 的项目设置编辑器中为每个设备设置方向。
Try the shouldAutorotateToInterfaceOrientation: method for ios5 and before.