我已经将 Swift 项目从 Swift 2 更新到 Swift 4,我正面临这个问题。在迁移之前,它在 Swift 2 中运行良好。但是在发生迁移错误之后
子类必须实现 PagerTabStripDataSource viewControllers(for:) 方法
正如我在谷歌上找到的解决方案,有些人建议添加这个委托。
func indicatorInfo(for pagerTabStripController: PagerTabStripViewController) -> IndicatorInfo {
return IndicatorInfo(title: "BASIC INFO")
}
我添加了这个功能,但这没有帮助。谁能帮帮我吗?谢谢。