在使用FHSTwitterEngine调用twitter v 1 1 api时遇到问题

时间:2018-07-28 12:11:56

标签: ios swift fhs-twitter-engine

我正在致电twitter api v1 1并获取用户时间轴响应我正在成功获取响应,并且我正在存储该响应,但是我无法在tableview上打印

让我展示我的代码

 var timeline = (FHSTwitterEngine.shared().getTimelineForUser(FHSTwitterEngine.shared().authenticatedUsername, isID: true, count: 10), terminator: "")

我从上层代码得到了用户时间轴的全部响应

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") as! TwitterPostListTableViewCell
    let timelinedata = [timeline]
    serviceData = ((timelinedata as AnyObject) as! [AnyObject])
    print(serviceData)
    let retweerCount = serviceData[indexPath.row]["retweet_count"]
    cell.lblRetweet.text = retweerCount as? String
    return cell
}

从这一行开始,我将整个响应存储在数组中,但是现在我想在表格视图中的标签上打印,然后我无法在标签上打印。uperer是将响应存储在数组中并在标签上打印的代码,但是仍然在打印的时候我越来越没了

任何人都可以帮助我

0 个答案:

没有答案