我正在使用 EnRoute Api 和 Glympse 服务器为我的应用程序存储代理任务。我可以使用凭据登录。但是,当我尝试使用它在我的表格视图单元格上显示所有任务时
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return(EnRouteWrapper.instance.manager()?.getTaskManager().getTasks()!.count())!
}
它没有给我单元格,我使用 print 语句在控制台中检查,它给出的 GlyArray 为 0。我的用户任务在 Play 商店的 EnRoute 应用程序中可见。
我也试过这个:
print((EnRouteWrapper.instance.manager()?.getTaskManager().getTasks()!.description.count)!)
这个语句给了我 26 个任务,而我的 Glympse 控制台中只有三个任务。
我想计算这三个,以便我可以在 tableView 单元格中显示数据。
谁能帮我这个?提前致谢