您好我的名字是ryoichi。
我正在尝试制作iphone应用。 我想在facebook gourp上制作上传图片。 但我不能。我可以上传图片,评论我的墙。
我尝试发布facebook组,但没有错误。 只发表评论。
这是我的代码
UIImage *img = [UIImage imageNamed:@"neko.jpg"];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img, @"picture", @"testcomment", @"message",
nil];
[img release];
NSString *test =@"/168782779916152/feed";
[[delegate facebook] requestWithGraphPath:test
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
请帮帮我。
答案 0 :(得分:2)
在使用之前不要释放img。移动请求后面的[img release]
以发送它。
答案 1 :(得分:0)
@ dragon112发布了正确的解决方案,但它有错误。你不应该释放那个图像,因为你没有分配/保留它!检查memory management and ownership conventions。在您的示例中,只需删除行
[img release];
确保你实现了代表。