gpt4 book ai didi

ios - 如何将闭包中的常量值存储在 String 类型的变量中?

转载 作者:行者123 更新时间:2023-11-30 13:50:29 24 4
gpt4 key购买 nike

我正在创建一个应用程序,在其中我从我的应用程序将我的帖子发布到 Facebook,其中他们为我提供了一个 postID,现在这个 postID 是一个常量,现在它关闭了,我必须将这个 postID 转换为 String 类型的变量,将该 postID 存储在我的数据库中。 enter image description here

当我打印结果时,它显示如下图所示,我认为这是一本字典,但我不知道如何将其转换为字符串。如果有人可以提供帮助。下面的代码用于发布:

if (FBSDKAccessToken.currentAccessToken() != nil){
if FBSDKAccessToken.currentAccessToken().hasGranted("publish_actions") {
FBSDKGraphRequest(graphPath: "me/feed", parameters: ["message": "Task: \(self.textField.text!)\n Task Description: \(self.textAreaDescription.text!)\n Time: \(self.dateTime)\n Location: \(self.placemark!.locality!) \(self.placemark!.administrativeArea!)"], HTTPMethod: "POST").startWithCompletionHandler({
(connection, result, error) -> Void in
if (error != nil) {
// Do nothing
} else {
print("postID: \(result)")

}
})
}
}

最佳答案

尝试

if let dic = result as? Dictionary<String, AnyObject> {
let id = dic["id"]
}

关于ios - 如何将闭包中的常量值存储在 String 类型的变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34353946/

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