我正在尝试实现 viewWillTransition 所需的方法,但出现了一个奇怪的错误:
'viewWillTransition(to:with:)' 的无效重新声明
我在 swift 2 中使用它没有问题但是 Swift 3 错误
我的代码:
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator){
super.viewWillTransition(to: size, with: coordinator)
guard let pageIndex = imageScrollView.auk.currentPageIndex else { return }
let newScrollViewWidth = size.width
coordinator.animate(alongsideTransition: { [weak self] _ in
self?.imageScrollView.auk.scrollToPage(atIndex: pageIndex, pageWidth: newScrollViewWidth, animated: false)
}, completion: nil)
}