gpt4 book ai didi

iPhone Facebook 应用程序 : Finding out where the error is?

转载 作者:行者123 更新时间:2023-11-29 05:02:27 26 4
gpt4 key购买 nike

所以我只是将 Facebook 添加到之前正在运行的应用程序中。我基本上只是添加了按按钮将所选图片上传/发布到 Facebook 的代码——什么也没发生。

是否有任何学习 iOS Facebook 应用语法的好资源?因为我迷路了。另外,你能告诉我为什么这个看似简单的代码不起作用吗?因为我几乎从演示应用程序示例中复制了它。

- (IBAction) sendPressed:(UIButton *)sender
{
for(UIViewController *controller in self.tabBarController.viewControllers)
{
if([controller isKindOfClass:[FirstViewController class]])
{
FirstViewController *firstViewController = (FirstViewController *)controller;
[firstViewController realLabel];
}
}
Facebook *facebook = [[Facebook alloc] initWithAppId:@"198223696897308"];

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
image, @"picture",
nil];

[facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];

self.tabBarController.selectedIndex = 0;//switch over to the first view to see if it worked
}

最佳答案

我要做的第一件事是通过设置断点或输出日志语句来验证该方法是否确实被调用。

我要做的第二件事是查看 API 文档,看看我调用的任何方法是否以任何方式提供错误。他们几乎肯定会这样做,所以请检查他们所说的。

我要做的第三件事是将设备设置为使用代理(例如 Charles )来查看请求是否实际上是通过网络发送出去的。

关于iPhone Facebook 应用程序 : Finding out where the error is?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6560016/

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