Facebookに画像をアップロードするアプリがあります。これはそれを行う私のコードの一部です:
[[self appDelegate] facebooking]; // checke that the user is loged in
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
labeledImage, @"source",
FB_IMG_POST_TITLE,@"message",
nil];
[ [[self appDelegate] getFacebookVar] requestWithGraphPath:[NSString stringWithFormat: @"/me/photos?access_token=%@", self.appDelegate.getFacebookVar.accessToken] andParams:params andHttpMethod:@"POST" andDelegate:self];
したい
A) アップロード プロセスを別のスレッドにする。
B) アップロードをキャンセルするオプションをユーザーに提供します。
どうすればいいですか?