1
vote
1answer
20 views
Twitter+OAuth Crash on iPhone OS 2.x
I'm using Ben Gottlieb's Twitter+OAuth code.
Works great on my 3.1.2 iPhone, but crashes on my 2.2.1 iPhone. I'm getting a EXC_BAD_ACCESS error in the EstimateBas64EncodedDataSize call. Here's what …
1
vote
4answers
242 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?
…
1
vote
3answers
133 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't access it without …
1
vote
1answer
88 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 touched from the one …
1
vote
2answers
165 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:[NSNumber numberWithInt:1], …
1
vote
3answers
721 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 happens after I …
1
vote
3answers
456 views
UIAlertView fails to show and results in “EXC_BAD_ACCESS” error
A method is called when a return button on the keyboard is pressed. After calling another method which returns an integer a message is created based on that integer. The message is then passed into an …
1
vote
5answers
1k 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?
0
votes
0answers
9 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 …
0
votes
1answer
60 views
EXC_BAD_ACCESS on UITableView reloadData call
Hi all,
I've come to the point of pulling my hair out over this one. I keep getting a EXC_BAD_ACCESS when I call the reloadData for the UITableView. I'll lay the groundwork for you here.
…
0
votes
1answer
34 views
NSImage leaking?
So I'm trying to duplicate the SourceView example in my app. I can generate the source list perfectly, fine. I can also expand the containers, and everything is displayed fine. However, when I select …
0
votes
1answer
42 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 <OpenCV/cv.h>
#include …
0
votes
2answers
56 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". However, if I wait …
0
votes
1answer
65 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 subsequent calls to …
0
votes
1answer
236 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 "EXEC_BAD_ACCESS" …
