我更新到Xcode 8 beta 5,现在在继承自UIView的类上收到以下错误:
Method does not override any method from its superclass override public func intrinsicContentSize() -> CGSize { ... }
有解决方法吗?
请检查
the latest reference。
(你可以很容易的找到它只是把“内在的内容大小”在 Apple’s developer site的搜索栏。)
原文链接:https://www.f2er.com/swift/320468.html(你可以很容易的找到它只是把“内在的内容大小”在 Apple’s developer site的搜索栏。)
Declaration
06000
intrinsicContentSize已经成为一个计算属性,因此您需要以这种方式覆盖它:
override public var intrinsicContentSize: CGSize { get { //... return someCGSize } }
或简单地:
override public var intrinsicContentSize: CGSize { //... return someCGSize }