Facebook好友列表迅速

时间:2017-01-05 04:35:30

标签: ios swift facebook facebook-graph-api facebook-friends

我想要一个已登录我的应用的其他Facebook好友的列表,但下面的代码无效。我知道我在应用程序上有其他朋友,但它打印的是“data(); totalCount(796);”为什么数据总是空的?

let params = ["fields": "id, first_name, last_name, middle_name, name, email, picture"]
    let request = FBSDKGraphRequest(graphPath: "me/friends", parameters: params)
    request!.start { (connection, result, error) -> Void in

        if error != nil {
            print(error!)
        }
        else if result != nil{
            print(result!)
        }
    }

1 个答案:

答案 0 :(得分:1)

您没有提供太多代码,但在您检索到信息后,您似乎忘记了投射数据数组。在不查看其他代码的情况下很难分辨,但您可能会发现this回答有用。

以下是正确数据投射和检索的示例。

func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {
    let cell = tableView.cellForRowAtIndexPath(indexPath) as YourCell
    //cell.value, cell.text, cell.randomValue or whatever you need
}