我使用下面的地址来下载一个 mp3 文件。我有一个 uitoolbarbutton ,当点击这个按钮时,我调用 downloadandCreatePath 然后它创建一个 View ,其中包含 my`downloadProgressV' 和一个用于取消下载的 UIButton。
我点击下载 View 出现并下载。下载成功,如果我取消,它也可以正常工作。
问题是,如果我做第二次,然后第三次。该应用程序第三次崩溃,并在我的 appdelegate 上显示 EXC_BAD_ACCESS 消息。
NSURLResponse *urlResponse;
NSMutableData *downloadedMutableData;
NSURLConnection *connectionManager;
- (NSString *) downloadandCreatePath: (int) doaId
{
@try {
self.downloadProgressV.progress=0.0;
self.downloadView.hidden=NO;
NSString *stringURL = @"http://www.ergmusic.com/mp3-samples/488000/488799.mp3";
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:stringURL]
cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
timeoutInterval:60.0];
connectionManager = [[NSURLConnection alloc] initWithRequest:urlRequest delegate:self];
if (!connectionManager) {
// Release the receivedData object.
downloadedMutableData = nil;
// Inform the user that the connection failed.
}
}
@catch (NSException *exception) {
NSLog(@"buuuuuuug");
return @"";
}
}
-(void)connectionNSURLConnection *)connection didReceiveResponseNSURLResponse *)response
{
[downloadedMutableData setLength:0];
urlResponse = response;
}
-(void)connectionNSURLConnection *)connection didReceiveDataNSData *)data {
[downloadedMutableData appendData:data];
self.downloadProgressV.progress = ((100.0/urlResponse.expectedContentLength)*downloadedMutableData.length)/100;
}
- (void)connectionNSURLConnection *)connection
didFailWithErrorNSError *)error
{
connectionManager = nil;
downloadedMutableData = nil;
}
-(void)connectionDidFinishLoadingNSURLConnection *)connection {
self.downloadProgressV.progress=0.0;
self.downloadView.hidden = YES;
connectionManager = nil;
downloadedMutableData = nil;
}
- (IBAction)cancelDownloadTouchUpInsideid)sender {
self.downloadView.hidden=YES;
[connectionManager cancel];
connectionManager = nil;
downloadedMutableData = nil;
}
有人知道我的问题出在哪里吗?
更新
我尝试使用以下指令使用 nszombies 调试应用程序:
http://michalstawarz.pl/2014/02/22/debug-exc_bad_access-nszombie-xcode-5/
但是这次没有出现错误。
更新
我在 viewdidload 方法中实例化 NSMutableData 。
我也尝试在 downloadandCreatePath 的第一行实例化它,但我仍然看到错误。
更新
错误发生在 2 次运行 之后,当我想尝试初始化 connectionManager 时。我想知道为什么在两次运行和第三次尝试后会出现问题。为什么它在第一次运行和第二次尝试后没有直播?!!
更新
我认为下面的堆栈跟踪更好:
<_NSCallStackArray 0x94ee270>(
0 ??? 0x097c85cf 0x0 + 159155663,
1 MafatihTebyan 0x00010cb4 -[DoaShowViewController downloadandCreatePath:] + 404,
2 MafatihTebyan 0x000114be -[DoaShowViewController DisplayDoaPlayView:] + 94,
3 libobjc.A.dylib 0x0181f874 -[NSObject performSelector:withObject:withObject:] + 77,
4 UIKit 0x0057d0c2 -[UIApplication sendAction:to:from:forEvent:] + 108,
5 UIKit 0x00851c9b -[UIBarButtonItem(UIInternal) _sendAction:withEvent:] + 139,
6 libobjc.A.dylib 0x0181f874 -[NSObject performSelector:withObject:withObject:] + 77,
7 UIKit 0x0057d0c2 -[UIApplication sendAction:to:from:forEvent:] + 108,
8 UIKit 0x0057d04e -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61,
9 UIKit 0x006750c1 -[UIControl sendAction:to:forEvent:] + 66,
10 UIKit 0x00675484 -[UIControl _sendActionsForEvents:withEvent:] + 577,
11 UIKit 0x00674733 -[UIControl touchesEnded:withEvent:] + 641,
12 UIKit 0x005ba51d -[UIWindow _sendTouchesForEvent:] + 852,
13 UIKit 0x005bb184 -[UIWindow sendEvent:] + 1232,
14 UIKit 0x0058ee86 -[UIApplication sendEvent:] + 242,
15 UIKit 0x0057918f _UIApplicationHandleEventQueue + 11421,
16 CoreFoundation 0x01a1383f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15,
17 CoreFoundation 0x01a131cb __CFRunLoopDoSources0 + 235,
18 CoreFoundation 0x01a3029e __CFRunLoopRun + 910,
19 CoreFoundation 0x01a2fac3 CFRunLoopRunSpecific + 467,
20 CoreFoundation 0x01a2f8db CFRunLoopRunInMode + 123,
21 GraphicsServices 0x0303b9e2 GSEventRunModal + 192,
22 GraphicsServices 0x0303b809 GSEventRun + 104,
23 UIKit 0x0057bd3b UIApplicationMain + 1225,
24 MafatihTebyan 0x00008a2d main + 141,
25 libdyld.dylib 0x03c1d725 start + 0,
26 ??? 0x00000001 0x0 + 1
)
重要更新
我注意到代码在第一次调用时也无法在 iOS 6 上运行。在 iOS 6 中它一直在崩溃。
更新
我为 NSURLConnection 看到的所有示例都使用 viewdidload 来创建请求文件。我在一个方法中使用它并一次又一次地调用这个方法。因为每次通话时网址都会发生变化。请问这个有什么问题吗?
Best Answer-推荐答案 strong>
如果您在第一次下载完成之前启动第二次下载,如果您重新实例化 NSMutableData (您没有向我们展示),旧的 NSMutableData 将被释放,导致僵尸相关的错误。您要么需要维护一个 NSMutableData 对象数组,要么为每次下载实例化一个新的委托(delegate)对象。
关于ios - NSURLConnection 两次后崩溃,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24229876/
|