ここは自分のコードです。複数のダウンロードが同じtime.Isで、このメソッドのスレッドセーフを終了するとき複数のファイルが同時に「ファイルに書き込む」ときにアプリケーションがクラッシュする
- (void) connectionDidFinishLoading: (NSURLConnection *) connection
{
//Each connection has its own "downloadedData".
BOOL writeFlag = [downloadedData writeToFile: filePath atomically: YES];
}
私は同じtime.Each接続で複数のNSURLConnectionsを持っては、1回のダウンロードitem.Appクラッシュに対応しますか?
それは言う:
_serverConnectionDiedNotification. Info -- notification=NSConcreteNotification 0x11d90470{name = AVController_ServerConnectionDiedNotification; object = <AVController: 0x11d855a0>},
AVController = <AVController: 0x11d855a0>,currentTime = 0.00
Program received signal: “0”.
warning: check_safe_call: could not restore current frame
THANKS!
いいえ、各接続には独自の "downloadedData"があります。ただし、ASI-HTTPRequestライブラリのヒントはありがたいです。 –