0
我有一個應用程序,上傳圖像到Facebook。這是這是否我的代碼的一部分:取消圖像上傳到Facebook從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)給用戶取消上傳的選項。
我該怎麼做?
我喜歡這行:if([[self appDelegate] facebooking])!輝煌。 –