我希望用户旋转设备但在视图中不进行任何更改(不要将视图旋转180度)。我想要的就是打印一句话。
这是我的代码 - (它打印了句子,但也旋转了设备的视图。在这个例子中,它在左边,但它对于哪一方面确实很重要):
override func shouldAutorotate() -> Bool {
if (UIDevice.currentDevice().orientation == UIDeviceOrientation.LandscapeLeft) {
println("Device has been rotated.")
}
return true
}
答案 0 :(得分:0)
更改
return true
到
return false