0

我是 Objective C 编程的新手,我开始开发一些应用程序。我正在寻找一个有用的库来上传我的 Facebook 照片。我正在使用带有 5.1 模拟器的更新版本的 Xcode。

4

1 回答 1

0

这是我在我的应用程序中使用的:

- (void)uploadImage:(UIImage *)image withName:(NSString *)name
{
    if (image)
    {
        incomingRequests++;
        //Image settings/parameters
        NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       name,@"caption",image, @"picture",
                                       nil];

        //method to upload images
        [self.facebook requestWithMethodName:@"photos.upload"
                                   andParams:params
                               andHttpMethod:@"POST"
                                 andDelegate:self];

        NSString *tempRequestString = [[NSString alloc] initWithString:@"photoUpload"];
        self.facebook.request_string = tempRequestString;
        [tempRequestString release];
    }
}

请参阅本教程以获得更好的理解:如何在您的 iPhone 应用程序中使用 Facebook 的新图形 API

于 2012-08-03T10:27:17.583 回答