Unable to use custom class in a protocol with @objc attribute?(无法在具有@objc 属性的协议中使用自定义类?)
问题描述
我正在尝试为 JSON 加载委托创建一个协议,JSONLoaderDelegate.我的另一个类,称为 JSONLoader,应该将事件分派给它的委托(实现 JSONLoaderDelegate 协议),例如:
I am trying to create a protocol for JSON loading delegation, JSONLoaderDelegate. My other class, called JSONLoader, is supposed to dispatch events to its delegate (that implements the JSONLoaderDelegate protocol) like:
self?.delegate?.jsonLoaderdidEndWithError(self!, error: JSONLoaderError.LoadError)
JSONLoader 的实现并不那么重要(恕我直言).但是我似乎在实现协议时遇到了问题,这是代码:
The implementation of the JSONLoader is not that important (imho). However I seem to have problems to implement the protocol, this is the code:
@objc protocol JSONLoaderDelegate {
optional func jsonLoaderdidBeginLoading(jsonLoader: JSONLoader)
func jsonLoaderdidEndWithError(jsonLoader: JSONLoader, error: JSONLoader.JSONLoaderError)
func jsonLoaderDidEndWithSuccess(jsonLoader: JSONLoader)
}
这对我来说看起来很简单,但我收到一个错误:
This looks pretty straightforward to me but I am getting an error:
方法不能被标记为@objc,因为参数的类型不能用 Objective-C 表示.
method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C.
指向所有三个函数.
显然,如果我删除了 @objc 属性,我就不能将 optional 用于该函数.我真的很想将 jsonLoaderdidBeginLoading 保留为可选.有什么想法/方法可以解决这个问题吗?谢谢!
Obviously, if I remove the @objc attribute I cannot use the optional for the function. I would really like to keep jsonLoaderdidBeginLoading as optional tho. Any ideas / ways to solve this? Thank you!
推荐答案
这 3 种方法的共同点是 JSONLoader 参数,我认为这就是阻止您桥接协议的原因.为了解决这个问题,你必须让它兼容 objc.
What the 3 methods have in common is the JSONLoader parameter, and that's what I think prevents you from bridging the protocol. In order to solve the problem you have to make it objc compatible.
这篇关于无法在具有@objc 属性的协议中使用自定义类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法在具有@objc 属性的协议中使用自定义类?
基础教程推荐
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
