会社用に小さな画像共有アプリを開発しています。画像をサーバーにアップロードし、アプリをバックグラウンドに切り替えると、画像の一部が破損します (すべてグレー)。
アプリが稼働している限り、画像データは正しく送信されているようです。バックグラウンドに切り替えるとすぐに、何も送信されないようです。
記録として、ASIHttpRequest を使用し、shouldContinueWhenAppEntersBackground を YES に設定し、iOS 4.3 から iOS 6.0 までアプリを実行しています。ARCを使用しています。
画像とデータの両方を(強い参照を通じて)「保持」しようとしましたが、そこにも何もありませんでした。
コードの一部は次のとおりです。
画像を送信する Web サービス
- (void)sendImage:(UIImage*)image forEmail:(NSString*)email
{
NSString* uploadImage = [NSString stringWithFormat:[self completeUrlForService:SEND_PHOTO], email];
NSURL* url = [NSURL URLWithString:[uploadImage stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSLog(@"uploadImage %@", uploadImage);
// setting that we will send a JSON object
[self setRequestType:WebServiceWrapperTypePOSTRequest];
// when posting a picture, it could take more time...
self.request.timeOutSeconds = 4*60;
[self.request setShouldContinueWhenAppEntersBackground:YES];
// setting up the POST data
[self addPostData:image forKey:@"fileContents"];
// start the request
[self startRequestForUrl:url userInfo:[NSDictionary dictionaryWithObject:SEND_PHOTO forKey:URL_KEY]];
}
ASIHttpRequest クラスの実際の部分
self.request = [ASIHTTPRequest requestWithURL:url];
[self.request setShouldContinueWhenAppEntersBackground:YES];
NSString* key = [[self.postDictionnary allKeys] objectAtIndex:0];
UIImage* value = [self.postDictionnary valueForKey:key];
__strong NSData* data = UIImageJPEGRepresentation(value, 1.0);
if (!data) data = UIImagePNGRepresentation(value);
[self.request appendPostData:data];
[self.request setPostLength:data.length];
[self.request setUserInfo:userInfo];
[self.request setDelegate:self];
[self.request startAsynchronous];
あなたの誰かが最も小さなアイデアを持っているなら、私はそれを取ります! ありがとう。