0
votes
1answer
45 views
EXC_BAD_ACCESS on very simple Objective-C program (Snow Leopard)
I'm following through one of the very early examples in Learning Objective-C on the Mac. My code is almost exactly the same as the code in the book (a couple spaces and trivial parentheses may …
0
votes
1answer
42 views
EXC_BAD_ACCESS in tableview application
This is my first iPhone application and it's based on a top-level tableview. Selections of rows either go to another tableview or to a view. The application runs OK on the simulator but when ported to …
0
votes
1answer
41 views
iphone crashes on the first time installed
hello guys,
my app crashes with EXC BAD ACCESS
i've added NSZombieEnabled = YES to the arguments of my executable.
it gives me that log:
[CFArray release]: message sent to deallocated instance …
1
vote
0answers
50 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
120 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
46 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
1answer
31 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
297 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
2answers
287 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
62 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
61 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
247 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
262 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
301 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
433 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 …
