我正在尝试使用UIScrollViewDelegate:
class ViewController: UIViewController <UIScrollViewDelegate> {}
但我有错误:不能专门化非泛型类型’UIViewController’
你的语法不正确.你不要在Swift中使用括号,
class ViewController: UIViewController,UIScrollViewDelegate {}
原文链接:https://www.f2er.com/iOS/331067.html