protocol ObserverProtocol{ ...}class broadcasterClass{ // Error: Type 'ObserverProtocol' does not conform to protocol 'AnyObject' private var _observers = NSHashtable<ObserverProtocol>.weakObjects()}
如果我们试图强制ObserverProtocol符合AnyObject协议,我们将收到另一个错误:
Using ‘ObserverProtocol’ as a concrete type conforming to protocol ‘AnyObject’ is not supported
甚至可以在Swift 3.0中创建一组弱委托吗?
当然,这是可能的.AnyObject是Objective C中与谓词相同的Swift.为了让您的代码能够编译,您只需要将@objc注释添加到您的协议中,告诉Swift协议应该与Objective C兼容.
所以:
@objc protocol ObserverProtocol {}总结
以上是内存溢出为你收集整理的使用NSHashTable在Swift 3中实现Observer模式全部内容,希望文章能够帮你解决使用NSHashTable在Swift 3中实现Observer模式所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)