Unexpected motion effect oscillations in tvOS
问题 I am experiencing motion effect oscillations using the following code import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { self.window = UIWindow(frame: UIScreen.mainScreen().bounds) self.window!.rootViewController = ExampleController() self.window!.makeKeyAndVisible() return true } } class ExampleController: