0
votes
1answer
26 views
OpenCV matrix access produces EXC_BAD_ACCESS
When I run the following program with scalefactory higher than 1.5, the program throws an EXC_BAD_ACCESS.
The program scales an image.
#include <iostream>
#include <OpenC …
1
vote
4answers
131 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 ca …
0
votes
2answers
49 views
Waiting for iPhone Memory Management
Hi - I am receiving a EXC_BAD_ACCESS when I am presenting another controller in Modal view. Apparently, when I get to that controller's viewDidLoad, some variables are "invalid". …
0
votes
1answer
217 views
EXC_BAD_ACCESS when using NSOutlineView
Hi, i'm trying to get a Outline view to display a directory, now I've edited the example from Apple to make it work from any directory I set, except when expanding any node I get " …
1
vote
3answers
101 views
Getting “EXC_BAD_ACCESS” when accessing instance variable from within UITableView delegate method
My iPhone application blows up when it accesses an instance variable from within one of the UITableView delegate methods. I think I'm retaining it so I do not understand why I can …
0
votes
5answers
224 views
EXC_BAD_ACCESS on iPhone when using “obj != nil
I've got a very simple line of code in Objective-C:
if ((selectedEntity != nil) && [selectedEntity isKindOfClass:[MobileEntity class]])
Occasionally and for no reason I …
0
votes
1answer
41 views
CGContextSetFillColorWithColor error (EXC_BAD_ACCESS).
I am confused why my app is crashing with this error.
I have implemented the displayLayer method (for rendering CALayer).
The first time this method runs things work fine. But sub …
0
votes
0answers
273 views
Breakpoints get deactivated in Xcode: EXC_BAD_ACCESS when NSZombieEnabled == YES
My app crashes at (seemingly) random events. So, I wanted to add NSZombieEnabled to debug my iPhone application. I cloned my target and set its Info.plist to the same as the origin …
1
vote
3answers
609 views
Iphone Core Data crashing on Save
Hi, 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 h …
1
vote
1answer
81 views
clever ways of tracking down bugs in Obj-C
I'm having a bug in my Objective C program which causes the machine to crash hip deep in some library methods, and it's all library methods down the stack to main (Which I haven't …
0
votes
2answers
201 views
Can somebody give me a hand about this stacktrace in iPhone app?
Program received signal: “EXC_BAD_ACCESS”.
(gdb) bt
#0 0x30011940 in objc_msgSend ()
#1 0x30235f24 in CFRelease ()
#2 0x308f497c in -[UIImage dealloc] ()
#3 0x30236b78 in -[NS …
0
votes
1answer
164 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. …
1
vote
2answers
148 views
Unexpected EXC_BAD_ACCESS in Objective-C
Hi,
I have the following method:
-(void)testAPIModule {
self.requests = [NSMutableArray array];
NSLog(@"making arrays");
/*(A)*/ id array1 = [NSArray arrayWithObjects:[NSNumbe …
0
votes
1answer
185 views
iPod Touch on device debugging crashes (EXC_BAD_INSTRUCTION, EXC_BAD_ACCESS)
I'm using iPod Touch 2G as a developement device with Xcode 3.1.3. When I try to trace the execution on the device from a breakpoint in the debugger I get EXC_BAD_INSTRUCTION, EXC_ …
0
votes
4answers
94 views
iphone debugging help- see when objects are released?
I'm a little ways into developing my first iphone app, and I've been running into exc_bad_access a lot. (I'm sure it's because I'm not designing stuff in a very MVC-proper way yet …
