gpt4 book ai didi

ios - Swift 回调语法问题

转载 作者:行者123 更新时间:2023-11-28 07:07:30 25 4
gpt4 key购买 nike

我是 Swift 的新手,我正在尝试声明一个接收回调的函数。

func getAll(callback: (students: [Student]!) -> Void) {
// http request to get a list of students and parse it

callback(students: students)
}

在调用该函数时,我正在做:

obj.getAll() {
(students: [Student]!) in

// Callback code
}

但它不会构建,它说:无法使用类型为“(([Student]!) -> _)”的参数列表调用 getAll

我正在关注 this thread作为向导,我错过了什么?

最佳答案

struct Student {

}

func getAll(callback: (students: [Student]!) -> Void) {
// http request to get a list of students and parse it
let students = [Student]()

callback(students: students)
}

getAll { (students) -> Void in
println(students)
}

关于ios - Swift 回调语法问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29905359/

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