Tagged Questions
This is a common fatal error used primarily in Objective-C. EXC_BAD_ACCESS
15
votes
8answers
9k views
Break on EXC_BAD_ACCESS in XCode?
I'm new to iPhone development and XCode in general and have no idea how to begin troubleshooting an EXC_BAD_ACCESS signal. How can I get XCode to break at the exact line that is causing the error?
...
10
votes
1answer
466 views
EXC_BAD_ACCESS when copying or retaining Block
As far as I understand a Block acts like an object, in that you can send copy or release messages to it, e.g:
[myBlock copy];
However whenever I do this, or release a block, I get EXC_BAD_ACCESS.
...
10
votes
2answers
2k views
EXC_BAD_ACCESS with IBACTION
I have read a lot about this issue but mine still seems to be different somehow.
So from what I understood, EXC_BAD_ACCESS occurs with memory management problems.
The thing is, mine does not seem (! ...
7
votes
2answers
4k views
Attempting to create USE_BLOCK_IN_FRAME … EXC_BAD_ACCESS with NSFetchedResultsController
This is an update to my problem. I am receiving this warning now when the program aborts.
warning: Attempting to create USE_BLOCK_IN_FRAME variable with block that isn't in the frame.
I can't find ...
7
votes
4answers
3k views
CGImage/UIImage lazily loading on UI thread causes stutter
My program displays a horizontal scrolling surface tiled with UIImageViews from left to right. Code runs on the UI thread to ensure that newly-visible UIImageViews have a freshly loaded UIImage ...
6
votes
3answers
450 views
How to properly deal with a deallocated delegate of a queued nsoperation
In my current project, several view controllers (like vc) spawn NSOperation objects (like operation) that are executed on a static NSOperationQueue. While the operation is waiting or running, it will ...
6
votes
1answer
1k views
XCode 4 Not Breaking On Correct Line on EXC_BAD_ACCESS
I recently had my xcode upgraded to version 4, and I have an EXC_BAD_ACCESS exception in my code, but despite setting NSZombieEnabled in the environment it's still showing the breakpoint on the ...
6
votes
6answers
2k views
UIWebView loading html5-Video EXC_BAD_ACCESS crash
in our iPad-App we are using an UIWebView to load different sites from one domain some of them with a hml5-Video.
Sites without a Video do load perfectly. But when I'm loading a site containing ...
6
votes
7answers
7k views
Iphone Core Data crashing on Save
I'm currently writing an Iphone application using Core Data and I get a EXC_BAD_ACCESS error during the [managedObjectContext save:&&error] code line. This crash only happens after I modify ...
5
votes
4answers
911 views
iOS5 crashes during runMode:beforeDate:
I have a problem with compatibility of my application with an iOS5 b7 and GM versions.
The issue occurs in the next lines of code:
do {
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode ...
5
votes
4answers
364 views
UITextField - crash on delegates that return BOOL
I have a UITextField that I am adding to a UITableViewCell to use as a search field for a long list of accounts. I have added it as follows:
- (UITableViewCell *)tableView:(UITableView *)tableView ...
5
votes
1answer
241 views
Crash in actionForLayer:forKey:
I have a cryptic EXC_BAD_ACCESS when changing some UILabel's frame. The crash is random, usually I have to repeat the conditions for several minutes.
Enabling NSZombies, as well as other memory debug ...
5
votes
1answer
741 views
EXC_BAD_ACCESS on objc_setAssociatedObject with -weak_library /usr/lib/libSystem.B.dylib linker flags
I have a EXC_BAD_ACCESS when I call objc_setAssociatedObject with the linker flags : -weak_library /usr/lib/libSystem.B.dylib linker flags.
I absolutely need the linker flag because of this, do ...
5
votes
1answer
538 views
MKReverseGeocoder causing EXC_BAD_ACCESS?
I have an app that is exhibiting an intermittent crash. The crash logs are showing a stack trace that is tough for me to decipher, so hoping that someone else has seen this and can point me in the ...
5
votes
1answer
215 views
iphone - how to properly handle exceptional situations (signals ?)
In my iphone app, I want to provide some sort of app termination handler that will do some final work (delete some sensitive data) before the application terminates.
I want to handle as much of the ...
5
votes
3answers
5k views
UIWebView EXC_BAD_ACCESS crash
I'm experiencing crashes of an app that uses UIWebView. Usually it's when page is not fully loaded and UIWebView is sent stopLoading selector. Or when UIWebView fully loaded page. I've got ...
4
votes
3answers
497 views
How to work around/handle delegation EXC_BAD_ACCESS errors? Obj C
I'm coding a library (Obj-C for iPhone) that I want to package and sell, so I obviously need to work out any design kinks before listing it for sale. I am also utilizing this library to help me ...
4
votes
4answers
428 views
NSDateFormatter Crash
We keep getting a random, weird crash with NSDateFormatter. The relevant stack trace is:
Program received signal: “EXC_BAD_ACCESS”.
#0 0x00000005 in ?? ()
#1 0x0213e3c3 in udat_parse ()
#2 ...
4
votes
2answers
814 views
Simple UITextView crashing
I'm trying to use a simple UITextView in a basic view, but it causes the app to crash sporadically. Sometimes it crashes while I'm typing something in it, sometimes when I'm scrolling, sometimes after ...
4
votes
5answers
1k views
xCode for iPhone EXC_BAD_ACCESS error only occurs when stepping through the debugger?
I am working on a project in xCode for iPhone where I am receiving an EXC_BAD_ACCESS error, HOWEVER, I only receive the error when stepping through a function I am trying to debug. When I take my ...
3
votes
4answers
351 views
iOS bad access impossible to find
I'm stuck with a stupid bad access since so many hours. I'm totally unable to find it.
I hope some of you will be able to show me the answer into the light.
In the code bellow it appear on the line : ...
3
votes
1answer
64 views
CoreData DetailTableView BAD_ACCESS Error
Maybe I'm not going about showing a detail for a selected row using CoreData, but I can't figure out why I'm getting a "BAD_ACCESS" error. I've googled around and can't find what I'm looking for.
...
3
votes
1answer
460 views
EXC_BAD_ACCESS in UITextField while typing
I created a brand new view-based project and added into the viewDidLoad
- (void)viewDidLoad
{
[super viewDidLoad];
myField = [[UITextField alloc] initWithFrame:CGRectMake(50, 50, 150, 31)];
...
3
votes
2answers
3k views
int retVal = UIApplicationMain(argc, argv, nil, nil); EXC_BAD_ACCESS when trying to load pdf in webView
Hi guys you are my last chance to find this bug. I searched the whole day and couldn't find anything.
What I am doing is I saving a pdf file from web locally and then loading it in a webView. In iOS ...
3
votes
2answers
170 views
NSNotification leads to segmentation fault
I have a strange behavior with an NSNotification object.
My app has an navigation controller, first view is a table view and the second view is just a view controller which shows data of the selected ...
3
votes
4answers
442 views
NSMutableDictionary causing EXC_BAD_ACCESS
I'm trying to fix an EXC_BAD_ACCESS error that is being thrown when i access a NSMutableDictionary in tableView:cellForRowAtIndexPath:indexPath. Right now it works when I fill ridesDict with a method ...
3
votes
2answers
743 views
CoreData crash on mergeChangesFromContextDidSaveNotification: invalid Summary
first the background:
I have a singleton which does all my CoreData related stuff on it. It's getting called from multiple threads. For each thread I generate a new MOC using always the same ...
3
votes
4answers
439 views
“Program received signal: EXC_BAD_ACCESS” - how to identify the line where this was triggered?
How can I most easily find out the point in my code where this (i.e. "Program received signal: EXC_BAD_ACCESS") is being triggered?
When I get this and I look in the console I don't see any ...
3
votes
9answers
944 views
UIImageWriteToSavedPhotosAlbum causes EXC_BAD_ACCESS
I develop a CGImage and it works fine when the program displays it on the screen using this:
[output_view.layer performSelectorOnMainThread:@selector(setContents:) withObject: (id) image ...
3
votes
2answers
475 views
App Crashes when NSMutableArray to plist
I have an NSMutableArray called *favorites. It is an array of NSStrings and I want to write it to a .plist file.
When I call:
favPath = [[NSBundle mainBundle] pathForResource:@"Favorites" ...
3
votes
3answers
424 views
MKMapView crashing with EXC_BAD_ACCESS
I have the following line of code which activates the breakpoint
[mapView addAnnotations:grabinstance.itemArray];
This crashing randomly. grabinstance.itemArray is fully populated always and is ...
3
votes
3answers
1k views
UIScrollView EXC_BAD_ACCESS crash in iOS SDK
I have an iPhone SDK application that has several views that appear and disappear as the user creates content. After using the application on a device for a while, I get the following crash:
Program ...
3
votes
1answer
173 views
EXC_BAD_ACCESS Error for no conceivable reason
OK, This is a method from my program that keeps giving the EXC_BAD_ACCESS error and crashing. I indicated the line below. questionsShown is a readwrite property and points to an NSMutableArray that I ...
3
votes
1answer
2k views
Getting EXC_BAD_ACCESS without any helpful msg from NSZombieEnabled
I'm a newbie to iphone development and I've been struggling with an EXC_BAD_ACCESS error I got a couple of days ago. I'm basically taking the Stanford iphone class independently and I am trying to ...
3
votes
2answers
2k views
Debugging EXC_BAD_ACCESS from a NSString
I had a EXC_BAD_ACCESS message in my console. I read about the environment variables NSZombieEnabled and MallocStackLoggingNoCompact on this site. I created my environment variables: NSZombieEnabled = ...
3
votes
3answers
2k views
EXC_BAD_ACCESS when calling pushViewController
I have a UITableView inside a UITabBarController.
When I'm calling
[[self navigationController] pushViewController:myViewController animated:YES];
there is no problem.
but,
When I'm calling the ...
3
votes
2answers
4k views
Loading images into NSArray using initWithObjects crashes but not with an NSMutableArray?
I'm doing some lazy loading of images into an array when the app has loaded. I have tried using an NSMutableArray and an NSArray (I don't need to alter the array once it's been created) but the latter ...
3
votes
6answers
7k views
Why is my cocoa program getting EXC_BAD_ACCESS during startup?
During the load of my cocoa application, my program crashes with the messsage EXC_BAD_ACCESS. The stack trace is not helpful. Any clues to how I can find the problem?
2
votes
1answer
68 views
EXC_BAD_ACCESS in nested dispatch_async with an NSAutoreleasePool
I have some code which is similar to the following code:
dispatch_queue_t queue = dispatch_queue_create("", 0);
dispatch_queue_t inner_queue = dispatch_queue_create("", 0);
...
2
votes
1answer
41 views
EXC_BAD_ACCESS when opening modal view
I'm having a problem with my iPhone App, I'm getting EXC_BAD_ACCESS, I had some memory leaks, but these are now fixed, so I'm not sure whats going on. I realise that I haven't provide a lot of ...
2
votes
1answer
51 views
iPhone - EXC_BAD_ACCESS when setting nil to an IBOutlet - Memory Management
I'm facing an annoying issue and I can't find out why.
I have a UIViewController I present in modal like that :
interviewsViewController *interviewsVC = [[interviewsViewController alloc] ...
2
votes
0answers
76 views
Cocos2D isTouchEnabled = NO; scene release and crash
I'm working on an iPhone game using cocos2d and I'm new to Objective C and Cocos2d so I'm sorry if this is a really beginner question. I've done a lot of searching and I can't seem to find a solution ...
2
votes
1answer
43 views
How to protect in IOS from EXC_BAD_ACCESS in recursive Algorithm
I am trying to do some simulations and math operations that are highly recursive and in some edge cases I overflow the call stack and get a EXC_BAD_ACCESS signal. It is unfeasable to change the ...
2
votes
4answers
134 views
Stopping at breakpoints causing EXC_BAD_ACCESS
My app runs fine and as expected, but for some reason when I place breakpoints, stepping into/over/resuming causes the program to crash with EXC_BAD_ACCESS. This does not happen if I remove/disable ...
2
votes
4answers
106 views
app crashes without any log messages
In my App I have an UIViewController, that pushed by another ViewController's navigation controller. It contains some views, buttons, scrollViews and accelerometer support. When I tapping "back" ...
2
votes
3answers
304 views
EXC_BAD_ACCESS message sent to deallocated instance, but I'm using ARC?
I've got an app that gets information from a SOAP web service and I want to display the results in a UITableView.
I had a previous version of this app and I'm creating a new version to basically ...
2
votes
3answers
347 views
“Thread 6 com.apple.NSURLConnectionLoader: Program received signal: EXC_BAD_ACCESS”
The app crashes about 15 seconds after launching and XCode just breaks at an address and gives me a pop up that says "Thread 6 com.apple.NSURLConnectionLoader: Program received signal: EXC_BAD_ACCESS"
...
2
votes
1answer
34 views
BAD_ACCESS while calling a timer's handle
I have this realization of timer in Timer.h/.mm
@implementation Timer
static multiset<Timer *> timers;
- (void) run
{
action();
if (!repeat)
{
...
2
votes
2answers
96 views
EXC_BAD_ACCESS disappears with zombies enabled
I'm getting an EXC_BAD_ACCESS crash at startup and Xcode says the crash is at the NSApplicationMain line in my main.m file. The crash happens 99% of the time and when I run it with zombies enabled the ...
2
votes
0answers
53 views
NSExpressionDescription for empty result sets
Using Core Data, I have a fetch request to fetch the minimum of a certain attribute using an expression. If I set a predicate on the request that results in no results being matched, I get ...