是否有支持上传视频的标准对话框?我们是否必须在代码中模仿标准对话框,还是可以附加vidoe? 我想使用一个很好的GUI,但我看到的所有facebook视频上传示例都使用了类似的东西:
[FBRequestConnection startWithGraphPath:@"me/videos" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
if (error) {
self.errorMessage = [NSString stringWithFormat:@"error: domain = %@, code = %d, description = %@", error.domain, error.code, error.localizedDescription];
}
}
我看到了一些将图片上传到“暂存资源”的示例。什么是有用的,它是如何使用的?