0
votes
0answers
17 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 …
1
vote
1answer
21 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 …
0
votes
1answer
66 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
35 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 …
1
vote
4answers
244 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?
…
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
57 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
239 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_BAD_ACCESS or some …
0
votes
1answer
239 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" …
0
votes
2answers
218 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 …
0
votes
5answers
273 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 can tell, the game …
0
votes
0answers
355 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 original target and set …
1
vote
3answers
135 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 …
0
votes
1answer
67 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 …
1
vote
3answers
736 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 …
