gpt4 book ai didi

xcode - Facebook API 快速检索好友列表

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

为什么这会给我一个错误?

fatal error: unexpectedly found nil while unwrapping an Optional value

我是否使用了错误的 valueForKey String?我想获取好友列表。 (有 friend ,因为当我打印结果时它会显示他们)

let fbRequest = FBSDKGraphRequest(graphPath:"/me/friends", parameters: nil);
fbRequest.startWithCompletionHandler { (connection : FBSDKGraphRequestConnection!, result : AnyObject!, error : NSError!) -> Void in

if error == nil {
let userName : NSArray = result.valueForKey("name") as! NSArray
print("Friends are : \(result)")

} else {

print("Error Getting Friends \(error)");

}
}

最佳答案

试试这个

let fbRequest = FBSDKGraphRequest(graphPath:"/me/friends", parameters: nil);
fbRequest.startWithCompletionHandler { (connection : FBSDKGraphRequestConnection!, result : AnyObject!, error : NSError!) -> Void in

if error == nil {
if let userNameArray : NSArray = result.valueForKey("data") as! NSArray
{
var i:Int = 0
for i;i<userNameArray.count ; i++
{
print(userNameArray[i].valueForKey("name"))
}

} else {

print("Error Getting Friends \(error)");

}
}

关于xcode - Facebook API 快速检索好友列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33734933/

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