I wrote in Swift 1.2 the next:
self.pageViewController.setViewControllers(viewControllers as [AnyObject], direction: .Forward, animated: true, completion: nil)
but now, in Swift 2 it prints me the next error:
Could not find member 'Forward'
How can I fix it?
animated: truepart the next error'Bool' is not convertible to 'BooleanLiteralConvertible'[UIViewController]?. Try to just remove theas [AnyObject](depends on how viewControllers is declared).