我在互联网代码中看到上传图片但使用“Facebook”无法识别,那么我需要在iOS中使用哪个框架? 你有代码示例吗? 我找到了这段代码:
- (IBAction)uploadPhoto:(id)sender {
NSString *path = @"http://www.facebook.com/images/devsite/iphone_connect_btn.jpg";
NSURL *url = [NSURL URLWithString:path];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:data];
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:img, @"picture", @"my photo's caption text here.", @"message", nil];
[facebook requestWithMethodName: @"photos.upload" andParams:params andHttpMethod:@"POST" andDelegate:self];
[img release];
}