gpt4 book ai didi

objective-c - 我在 Swift 中调用此 Objective-C block /API 调用时做错了什么?

转载 作者:搜寻专家 更新时间:2023-10-31 08:24:01 24 4
gpt4 key购买 nike

我正在使用 RedditKit将 Reddit 集成到应用程序中,在 Objective-C 中,我按如下方式调用 API(并且运行良好):

    [[RKClient sharedClient] signInWithUsername:@"username" password:@"password" completion:^(NSError *error) {
RKPagination *pagination = [RKPagination paginationWithLimit:100];
[[RKClient sharedClient] linksInSubredditWithName:subredditSelected pagination:pagination completion:^(NSArray *collection, RKPagination *pagination, NSError *error) {
// code that executes on completion
}];
}];

下面是我在 Swift 中的调用方式:

RKClient.sharedClient().signInWithUsername("username", password: "password", completion: { (error: NSError!) in
RKClient.sharedClient().frontPageLinksWithPagination(RKPagination(limit: 50), completion: { (collection: RKLink[]!, pagination: RKPagination!, error: NSError!) in
// code that executes on completion
})
})

但我在使用 Swift 版本时一直收到此错误:

Could not find an overload for 'init' that accepts the supplied arguments

编辑:这是一个展示它的示例项目:http://cl.ly/3K0i2P1r3j1y

最佳答案

注意:此问题与以下问题相同:

animateWithDuration:animations:completion: in Swift

Properly referencing self in dispatch_async


感谢添加示例工程,问题如下:

来自 Swift 书:https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/Closures.html

闭包的优化之一是:

Implicit returns from single-expression closures

所以...编译器认为您的闭包正在返回 NSURLSessionDataTask 的值,因为它是闭包 block 内的唯一行,因此改变了参数的类型。

有几种方法可以解决这个问题,但没有一种是理想的...

想法是你添加到闭包中的任何其他行都会修复它,所以这确实有效:

      RKClient.sharedClient().signInWithUsername("username", password: "password", completion: { error -> () in
let a = 1
RKClient.sharedClient().frontPageLinksWithPagination(nil, completion: nil)
})

解决这个问题的更简洁的方法是:

RKClient.sharedClient().signInWithUsername("username", password: "password", completion: { error in
let client = RKClient.sharedClient()
client.frontPageLinksWithPagination(nil, completion: nil)
})

如果您只需将更多代码也放入该闭包中,这就不是问题!

关于objective-c - 我在 Swift 中调用此 Objective-C block /API 调用时做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24338842/

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