在Objective-C中使用带有返回值和完成块的swift函数

时间:2016-08-09 20:42:39

标签: ios objective-c swift

我已经设置了我的项目,以便能够在Obj-c类中使用swift文件,但由于某种原因,我无法调用具有返回类型和完成块的函数。

@objc class AgentManager : NSObject {
static let instance = AgentManager()

// the sharedInstance class method can be reached from ObjC.
class func sharedInstance() -> AgentManager {
    return AgentManager.instance
}

func fetchAgentInfo(agentID: String, completion:(result: Agent) ->    Void) { //...networking code }
在Objective-c文件中

AgentManager *manager = [AgentManager sharedInstance];
[manager fetchAgentInfo:@"string" completion:^(Agent *response) {
    //No visible @interface for 'AgentManger' declares the
    //selector fetchAgentInfo:completion:
}];

************解*************:

我试图返回一个Agent结构。你不能在Objc中使用Swift结构。我刚把它改成了一个类。

感谢

1 个答案:

答案 0 :(得分:0)

我认为问题在于完成块签名。请尝试以下代码:

[self.manager fetchAgentInfo:@"string" completion:^(AgentManager * _Nonnull result) {

}];

你也有两个类AgentManager和Agent,我假设这两个是同一个类,它只是一个错字。