我对Facebook SDK for iOS有疑问

时间:2011-06-24 15:27:49

标签: ios facebook facebook-graph-api

NSLog(@"%@",selectedImage);
if (self.selectedImage != nil) {

    UIImage *img = self.selectedImage;
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   img, @"picture",
                                   @"iOS Apps with FBConnect",@"caption",
                                   nil];

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

我有这段代码。, 我使用Facebook图形API将照片发布到我的墙上。 但照片已上传到其他专辑

我可以选择相册来上传照片吗? 要么 我想将我的照片上传到“Wall Photos”专辑??

0 个答案:

没有答案