ios – 不能专门化非泛型类型’UIViewController’

前端之家收集整理的这篇文章主要介绍了ios – 不能专门化非泛型类型’UIViewController’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用UIScrollViewDelegate:
class ViewController: UIViewController <UIScrollViewDelegate> {}

但我有错误:不能专门化非泛型类型’UIViewController’

解决方法

你的语法不正确.你不要在Swift中使用括号,
class ViewController: UIViewController,UIScrollViewDelegate {}
原文链接:https://www.f2er.com/iOS/331067.html

猜你在找的iOS相关文章