3
我正在上傳照片到我的Facebook牆上使用Facebook IOS sdk圖形API。一切工作正常這裏是通常的代碼我使用:Iphone Facebook IOS上傳需要花費太多時間的圖片?
// Here i am compressing the image
NSData *yourImageData= UIImageJPEGRepresentation([_images objectAtIndex:pageIndex],0.5);
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Photo taken with my app", @"message", yourImageData, @"source", nil];
[_facebook requestWithGraphPath:@"/me/photos" andParams:params andHttpMethod:@"POST" andDelegate:self];
所以我的問題是我應該進一步壓縮圖片?還是有另一種方式,以便照片上傳可以更快地完成?
非常感謝, 德維爾