如何解决快速从解析函数返回值
我想快速从解析函数返回一个值,但我遇到了一个问题...... 当我尝试返回函数中的值时,我得到“无法将‘Int’类型的值转换为闭包结果类型‘()’”
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int
{
let query = PFQuery(className: "people")
query.countObjectsInBackground
{ (count,error) in
return Int(count)
}
}
解决方法
您正在返回一个闭包并且 numberOfRowsInSection
接受一个 Int
。
我不太确定背后的逻辑是什么,但你可以做的是:
// declare this variable
var numberOfSections:Int?
// then inside a function or viewDidLoad
let query = PFQuery(className: "people")
query.countObjectsInBackground
{ (count,error) in
self.numberOfSections = Int(count)
// finally you force the tableView to reload
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int
{
return numberOfSections ?? 0
// maybe you want to return at least one section when
// you var is nil so can can change it to ?? 1
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。