Facebookでの写真のアップロードの進行状況を表示しようとしています。アップロードは正しく機能しています。しかし、進捗状況を表示する方法がわかりません。
アップロード用の現在のコードは次のとおりです。
- (IBAction)delenFacebook:(id)sender {
NSLog(@"share image");
UIImage *img = _postImage.image;
// if it is available to us, we will post using the native dialog
BOOL displayedNativeDialog = [FBNativeDialogs presentShareDialogModallyFrom:self
initialText:nil
image:img
url:nil
handler:nil];
if (!displayedNativeDialog) {
[self performPublishAction:^{
[FBRequestConnection startForUploadPhoto:img
completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
[self showAlert:@"Photo Post" result:result error:error];
}];
}];
}
}