我有iOS应用程序,只启用了纵向模式,其中一个ViewControllers有图表。使用PNChart库创建图表。
如何旋转此图表以使其在Swift(iOS 7,8,9)中以横向显示?
我在AppDelegate中使用此代码,但没有运气 - 视图已旋转但图表不是,我现在只能看到一半
func application(application: UIApplication, supportedInterfaceOrientationsForWindow window: UIWindow?) -> UIInterfaceOrientationMask {
if self.window?.rootViewController is myChartViewController {
return UIInterfaceOrientationMask.Landscape
}
// Else only allow the window to support portrait orientation
else {
return UIInterfaceOrientationMask.Portrait
}
}