gpt4 book ai didi

ios - 协议(protocol)作为快速冲突中的参数类型

转载 作者:行者123 更新时间:2023-11-28 05:29:58 26 4
gpt4 key购买 nike

我正在使用外部 SDK(通过在我的项目中包含他们的 xcode 项目)。SDK 在 objective-c 中正常工作,但是当我切换到 swift 时,我遇到了以下问题。

每当我实现参数类型为协议(protocol)的委托(delegate)方法时,xcode 突然向全局声明的那个类的对象声明给出错误,即不在任何函数中。如果我评论那个特定的委托(delegate)方法,我将不会收到任何错误并且它会成功编译/执行。

请检查以下 swift 代码,然后是我的 # 条评论

//CustomView is subclass of UIView
var customview : CustomView = CustomView() // #1 error as : Use of undeclared type CustomView
@IBAction func showCustomView(sender: AnyObject)
{
// CustomView configurations
}

#pragma CustomView Delegates
func CustomViewShown(view: AnyObject!) /// #2 delegate work properly
{

}

func CustomView(view: AnyObject!, didFailWithError error: NSError!)
// #3 if I keep this method uncommented it gives error to #1 line
// if I commented this method all other works fine without error.
{

}

令人惊讶的是,上述所有委托(delegate)和 SDK 适用于 objective-C 但不适用于 swift。

根据我的少量研究,我得出的结论是,我们不能在 swift 中使用相同的类名和方法名,即在我的例子中是 CustomView。如果我使用 CustomView 来声明对象,我不能将它用作方法名称。

所以有人请验证一下,我是否正确?这个问题的解决方案是什么。

最佳答案

这本质上是一个名称冲突问题。

在类声明中,CustomView 是一个方法名,而不是类名。所以,基本上,您的假设是正确的。

但是,您有一个解决方法。

假设 CustomView 在 SDK 中声明。这是一个名为 SomeSDK 的框架。然后你可以像这样引用 CustomView:

import SomeSDK

class ViewController: UIViewController {

var customview: SomeSDK.CustomView = SomeSDK.CustomView()

func CustomView(view: AnyObject!, didFailWithError error: NSError!) {
}
}

如果你不想在任何地方都加上SomeSDK.前缀,你可以typealias它:

import SomeSDK

typealias SDKCustomView = CustomView // you can use `CustomView` here because there is no conflicting name.

class ViewController: UIViewController {

var customview: SDKCustomView = SDKCustomView()

func CustomView(view: AnyObject!, didFailWithError error: NSError!) {
}
}

关于ios - 协议(protocol)作为快速冲突中的参数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29170649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com