使用这个 Tutorail 我成功登录 Facebook http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from- your-iphone-app 但我没有使用 facebook for iOS 的经验。
- (IBAction)rateTapped:(id)sender {
NSURL *url = [NSURL URLWithString:@"YOur Image url"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:data];
[variables setObject:img forKey:@"picture"];
FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"/me/photos"
withPostVars:variables];
}
但是在这里我很困惑我们如何传递图像 url,bcz 我的图像在同一页面上,而且当我使用这段代码时,它给了我以下四个错误。
我没有运气。怎么了?提前致谢