active questions tagged exc-bad-access - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:32:17Zhttp://stackoverflow.com/feeds/tag/exc-bad-accesshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815476/cgimage-uiimage-lazily-loading-on-ui-thread-causes-stutter0CGImage/UIImage lazily loading on UI thread causes stutterJB2009-11-29T12:57:07Z2009-11-29T12:57:07Z
<p>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 assigned to them. The loading happens on a background thread. </p>
<p>Everything works almost fine, except there is a stutter as each image becomes visible. At first I thought my background worker was locking something in the UI thread. I spent a lot of time looking at it and eventually realized that the UIImage is doing some extra lazy processing on the UI thread when it first becomes visible. This puzzles me, since my worker thread has explicit code for decompressing JPEG data. </p>
<p>Anyway, on a hunch I wrote some code to render into a temporary graphics context on the background thread and - sure enough, the stutter went away. The UIImage is now being pre-loaded on my worker thread. So far so good.</p>
<p>The issue is that my new "force lazy load of image" method is unreliable. It causes intermittent EXC_BAD_ACCESS. I have no idea what UIImage is actually doing behind the scenes. Perhaps it is decompressing the JPEG data. Anyway, the method is:</p>
<pre><code>+ (void)forceLazyLoadOfImage: (UIImage*)image
{
CGImageRef imgRef = image.CGImage;
CGFloat currentWidth = CGImageGetWidth(imgRef);
CGFloat currentHeight = CGImageGetHeight(imgRef);
CGRect bounds = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
CGAffineTransform transform = CGAffineTransformIdentity;
CGFloat scaleRatioX = bounds.size.width / currentWidth;
CGFloat scaleRatioY = bounds.size.height / currentHeight;
UIGraphicsBeginImageContext(bounds.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextScaleCTM(context, scaleRatioX, -scaleRatioY);
CGContextTranslateCTM(context, 0, -currentHeight);
CGContextConcatCTM(context, transform);
CGContextDrawImage(context, CGRectMake(0, 0, currentWidth, currentHeight), imgRef);
UIGraphicsEndImageContext();
}
</code></pre>
<p>And the EXC_BAD_ACCESS happens on the CGContextDrawImage line. QUESTION 1: Am I allowed to do this on a thread other than the UI thread? QUESTION 2: What is the UIImage actually "pre-loading"? QUESTION 3: What is the official way to solve this problem?</p>
<p>Thanks for reading all that, any advice would be greatly appreciated!</p>
http://stackoverflow.com/questions/1290090/ipod-touch-on-device-debugging-crashes-excbadinstruction-excbadaccess0iPod Touch on device debugging crashes (EXC_BAD_INSTRUCTION, EXC_BAD_ACCESS)sfider2009-08-17T19:59:22Z2009-11-28T23:00:02Z
<p>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 error with debugger not being able do disassemble something. The same thing will work properly on iPhone Simulator. Previously I've been able to trace the execution from a breakpoint on some other iPod Touch 2G and iPhone 3G devices.</p>
<p>If not interrupted with a breakpoint the app will work properly. Also before any "stepping" I can investigate variables currently on the stack and their values seem to be correct.</p>
<p>Is it possible that the device is somehow flawed or should I look into my project configuration more closely (and what should I look for)?</p>
<p>EDIT: After playing with project configuration I've found that debugger starts to act normally after disabling "Compile for Thumb" option. The question now is why is it so?</p>
http://stackoverflow.com/questions/1796787/twitteroauth-crash-on-iphone-os-2-x1Twitter+OAuth Crash on iPhone OS 2.xDave Batton2009-11-25T13:03:36Z2009-11-27T02:41:26Z
<p>I'm using Ben Gottlieb's <a href="http://github.com/bengottlieb/Twitter-OAuth-iPhone" rel="nofollow">Twitter+OAuth</a> code.</p>
<p>Works great on my 3.1.2 iPhone, but crashes on my 2.2.1 iPhone. I'm getting a <code>EXC_BAD_ACCESS</code> error in the <code>EstimateBas64EncodedDataSize</code> call. Here's what I'm seeing in the debugger:</p>
<pre><code>#0 0x2fe1e724 in __dyld_pthread_getspecific
#1 0x2fe1eddc in __dyld___gthread_getspecific
#2 0x2fe1eec8 in __dyld__Unwind_SjLj_Register
#3 0x2fe07b14 in __dyld__ZN4dyld14bindLazySymbolEPK11mach_headerPm
#4 0x2fe15ebc in __dyld_stub_binding_helper_interface
#5 0x0003cab8 in EstimateBas64EncodedDataSize at Base64Transcoder.c:106
#6 0x0003cb04 in Base64EncodeData at Base64Transcoder.c:120
#7 0x0003e476 in -[OAHMAC_SHA1SignatureProvider signClearText:withSecret:] at OAHMAC_SHA1SignatureProvider.m:50
</code></pre>
<p>What am I missing? A library that's not available with 2.2.1?</p>
http://stackoverflow.com/questions/1738255/nsimage-leaking0NSImage leaking?rcapote2009-11-15T17:53:08Z2009-11-18T01:43:39Z
<p>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 an item in the list, the app crashes with an EXC_BAD_ACCESS.</p>
<p>Backtrace</p>
<pre><code>#0 0x7fff86532340 in objc_msgSend_vtable14
#1 0x7fff8508f622 in -[NSImage _deallocAuxiliaryStorage]
#2 0x7fff8508f5a1 in -[NSImage dealloc]
*#3 0x100002913 in -[SourceListCell setImage:] at SourceListCell.m:23
*#4 0x100001c31 in -[ProjectController outlineView:willDisplayCell:forTableColumn:item:] at ProjectController.m:166
#5 0x7fff85103085 in -[NSTableView preparedCellAtColumn:row:]
#6 0x7fff8511bc3f in -[NSTableView _drawContentsAtRow:column:withCellFrame:]
#7 0x7fff8511bbb5 in -[NSOutlineView _drawContentsAtRow:column:withCellFrame:]
#8 0x7fff8511acd8 in -[NSTableView drawRow:clipRect:]
#9 0x7fff8511a5cb in -[NSTableView drawRowIndexes:clipRect:]
#10 0x7fff8511a44c in -[NSOutlineView drawRowIndexes:clipRect:]
</code></pre>
<p>SourceListCell</p>
<pre><code>@interface SourceListCell : NSTextFieldCell {
NSImage *image;
}
@property(nonatomic, retain) NSImage *image;
@end
- (id)init {
self = [super init];
[self setFont:[NSFont systemFontOfSize:[NSFont smallSystemFontSize]]];
return self;
}
- (void)dealloc {
[image release];
image = nil;
[super dealloc];
}
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
if (image != nil) {
[image setSize:NSMakeSize(kIconImageSize, kIconImageSize)];
// the cell has an image: draw the normal item cell
NSSize imageSize;
NSRect imageFrame;
imageSize = [image size];
NSDivideRect(cellFrame, &imageFrame, &cellFrame, 3 + imageSize.width, NSMinXEdge);
imageFrame.origin.x += kImageOriginXOffset;
imageFrame.origin.y -= kImageOriginYOffset;
imageFrame.size = imageSize;
if ([controlView isFlipped])
imageFrame.origin.y += ceil((cellFrame.size.height + imageFrame.size.height) / 2);
else
imageFrame.origin.y += ceil((cellFrame.size.height - imageFrame.size.height) / 2);
[image compositeToPoint:imageFrame.origin operation:NSCompositeSourceOver];
NSRect newFrame = cellFrame;
newFrame.origin.x += kTextOriginXOffset;
newFrame.origin.y += kTextOriginYOffset;
newFrame.size.height -= kTextHeightAdjust;
[super drawWithFrame:newFrame inView:controlView];
}
}
</code></pre>
<p>outline view delegate</p>
<pre><code>- (void)outlineView:(NSOutlineView *)outlineView willDisplayCell:(NSCell*)cell forTableColumn:(NSTableColumn*)tableColumn item:(id)item {
if ([[tableColumn identifier] isEqualToString:COLUMNID_NAME]) {
if ([cell isKindOfClass:[SourceListCell class]]) {
//item = [item representedObject];
NSImage *iconImage;
iconImage = [[NSWorkspace sharedWorkspace] iconForFile:[item path]];
[item setNodeIcon:iconImage];
[(SourceListCell*)cell setImage:[item nodeIcon]];
}
}
}
</code></pre>
http://stackoverflow.com/questions/1749215/excbadaccess-on-uitableview-reloaddata-call0EXC_BAD_ACCESS on UITableView reloadData callSteve-o2009-11-17T14:22:14Z2009-11-17T14:31:04Z
<p>Hi all,</p>
<p>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.</p>
<p>MainViewController.h</p>
<pre><code>#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@class iPROSAppDelegate;
@interface MainViewController : UIViewController <UIScrollViewDelegate, UITableViewDelegate, UITableViewDataSource> {
iPROSAppDelegate *parent;
...
NSMutableArray *contentSeqList;
UITableView *contentSeqTable;
}
@property (nonatomic, retain) IBOutlet iPROSAppDelegate *parent;
...
@property (nonatomic, retain) NSMutableArray *contentSeqList;
@property (nonatomic, retain) IBOutlet UITableView *contentSeqTable;
...
- (IBAction)changeMainView:(id)sender;
@end
</code></pre>
<p>MainViewController.m</p>
<pre><code>- (IBAction)changeMainView:(id)sender{
//do logs to make sure we get here and grab an NSDictionary object from another class
NSLog(@"got to a change of main view");
NSDictionary *myContentSequences = [[parent csList] grabCSListandReturnJSON:[sender tag]];
NSLog(@"got cs list for tag %@: %@", [sender currentTitle], myContentSequences);
//set up table view
contentSeqTable = [[UITableView alloc] initWithFrame:CGRectMake(40, 20, 240, 300) style:UITableViewStyleGrouped];
contentSeqTable.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
[contentSeqTable setDelegate:self];
[contentSeqTable setDataSource:self];
NSLog(@"delegate: %@, data source: %@", [contentSeqTable delegate], [contentSeqTable dataSource]);
contentSeqList = [[NSMutableArray alloc] init];
//populate nsmutablearray contentseqlist using the nsdictionary mycontentsequences
for (id dashboard in [myContentSequences objectForKey:@"dashboards"]){
if ([dashboard objectForKey:@"error"] == nil){
for (id contentsequence in [dashboard objectForKey:@"contentSequences"]){
[contentSeqList addObject:[contentsequence objectForKey:@"name"]];
NSLog(@"added object to content sequence list: %@", [contentsequence objectForKey:@"name"]);
}
}
}
[contentSeqTable reloadData];
...
}
</code></pre>
<p>changeMainView is called when a button is clicked in the main view. Here are the delegate methods also for UITableView. Notice that the NSLogs are the first lines in these methods, but I get neither showing in the console log before the EXC_BAD_ACCESS.</p>
<pre><code>- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
NSLog(@"content seq list count: %@", [contentSeqList count]);
return [contentSeqList count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"setting up the cells");
NSUInteger index = [indexPath indexAtPosition:1];
NSString *myId = @"id";
if (tableView.editing) myId = @"idE";
UILabel *name;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:myId];
if (cell == nil){
cell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 20) reuseIdentifier:myId] autorelease];
float width = 260;
if (tableView.editing) width = 240;
name = [[[UILabel alloc] initWithFrame:CGRectMake(45, 1, width, 53)] autorelease];
[name setBackgroundColor:[UIColor clearColor]];
[name setTextColor:[UIColor blackColor]];
[name setFont:[UIFont fontWithName:@"Helvetica" size: 18]];
[name setAdjustsFontSizeToFitWidth:YES];
[name setMinimumFontSize:11];
[name setNumberOfLines:2];
name.tag = 1;
[cell.contentView addSubview:name];
}
else{
name = (UILabel *)[cell.contentView viewWithTag:1];
}
if ([tableView indexPathForSelectedRow]){
if (indexPath == [tableView indexPathForSelectedRow]){
[name setTextColor:[UIColor whiteColor]];
}
else{
[name setTextColor:[UIColor blackColor]];
}
}
else{
[name setTextColor:[UIColor blackColor]];
}
[name setText:[contentSeqList objectAtIndex:index]];
return cell;
}
</code></pre>
<p>The delegate methods are part of the same class, MainViewController. I've also checked that the UITableView was not nil via NSLog right before reloadData. I know I have to be missing something small here. Any suggestions would be much appreciated. Thanks!</p>
http://stackoverflow.com/questions/1264727/uiwebview-excbadaccess-crash0UIWebView EXC_BAD_ACCESS crashHARDWARRIOR2009-08-12T07:29:27Z2009-11-13T10:54:23Z
<p>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 <code>EXC_BAD_ACCESS</code>. Stack looks like this:</p>
<pre><code>#0 0x95bb7688 in objc_msgSend
#1 0x30a671db in -[UIWebView webView:decidePolicyForNavigationAction:request:frame:decisionListener:]
#2 0x3024a10d in __invoking___
#3 0x30249ff8 in -[NSInvocation invoke]
#4 0x358ab160 in HandleDelegateSource
#5 0x302452c1 in CFRunLoopRunSpecific
#6 0x30244628 in CFRunLoopRunInMode
#7 0x32044c31 in GSEventRunModal
#8 0x32044cf6 in GSEventRun
#9 0x309021ee in UIApplicationMain
#10 0x0000239c in main at main.m:13
</code></pre>
<p>for me most strange thing here is <code>webView:decidePolicyForNavigationAction:request:frame:decisionListener:</code> selector sent to UIWebView, because there is no such selector in UIWebView documentation! Only for Cocoa (not cocoa touch) WebView.
I suspect that there is something wrong with UIWebView or its delegate. But I can't set breakpoint to watch them. Please advise how I can get more info in this situation.</p>
http://stackoverflow.com/questions/1672744/opencv-matrix-access-produces-excbadaccess0OpenCV matrix access produces EXC_BAD_ACCESSspangs2009-11-04T09:56:24Z2009-11-04T10:17:44Z
<p>When I run the following program with scalefactory higher than 1.5, the program throws an EXC_BAD_ACCESS.
The program scales an image.</p>
<pre><code>#include <iostream>
#include <OpenCV/cv.h>
#include <OpenCV/highgui.h>
#include <cmath>
using namespace std;
using namespace cv;
int scale (int xyvalue, float scalefactor) {
return ceil(xyvalue/scalefactor);
}
int main () {
Mat input;
float scalefactorx = 1.5;
float scalefactory = 1.5;
Mat output;
input = imread("/tmp/plum_grey_scale_MC_.low.jpg", 0);
output = cvCreateMat(input.size().height*scalefactory, input.size().width*scalefactorx, input.type());
for (int y = 0; y<output.size().height; y++)
{
for (int x = 0; x<output.size().width; x++)
{
output.data[y*output.size().width+x] = input.data[scale(y,scalefactory)*input.size().width + scale(x,scalefactorx)];
}
}
namedWindow("pic1", CV_WINDOW_AUTOSIZE);
imshow("pic1", output);
cvWaitKey(0);
cvDestroyWindow("BlomsterBillede");
return 0;
}
</code></pre>
<p>If e.g. I set scalefactorx = 5, scalefactory = 2, it fails around x=1356 and y=409.</p>
<p>Hope you can help me.</p>
http://stackoverflow.com/questions/1625712/waiting-for-iphone-memory-management0Waiting for iPhone Memory ManagementYVR19852009-10-26T16:17:51Z2009-10-26T17:16:55Z
<p>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 like 20 seconds, then the controller will load fine. </p>
<p>I am new to iPhone. Sorry for a newbie question.</p>
http://stackoverflow.com/questions/1622079/break-on-excbadaccess-in-xcode1Break on EXC_BAD_ACCESS in XCode?jasonh2009-10-25T21:11:49Z2009-10-26T06:43:20Z
<p>I'm new to iPhone development and XCode in general and have no idea how to begin troubleshooting an <code>EXC_BAD_ACCESS</code> signal. How can I get XCode to break at the exact line that is causing the error?</p>
<p><hr /></p>
<p>I can't seem to get XCode to stop on the line causing the problem, but I do see the following lines in my debug console:</p>
<blockquote>
<p>Sun Oct 25 15:12:14 jasonsmacbook
TestProject[1289] :
CGContextSetStrokeColorWithColor:
invalid context</p>
<p>Sun Oct 25 15:12:14 jasonsmacbook
TestProject[1289] :
CGContextSetLineWidth: invalid context</p>
<p>Sun Oct 25 15:12:14 jasonsmacbook
TestProject[1289] :
CGContextAddPath: invalid context</p>
<p>Sun Oct 25 15:12:14 jasonsmacbook
TestProject[1289] :
CGContextDrawPath: invalid context</p>
<p>2009-10-25 15:12:14.680
LanderTest[1289:207] *** -[CFArray
objectAtIndex:]: message sent to
deallocated instance 0x3c4e610</p>
</blockquote>
<p>Now, I am attempting to draw to the context I retrieve from <code>UIGraphicsGetCurrentContext()</code> and pass to the object that I want to draw with.</p>
<p><hr /></p>
<p>Further trial and error debugging and I found that an <code>NSMutableArray</code> I have a property for on my class was a zombie. I went into the <code>init</code> function for the class and here's the code I was using:</p>
<pre><code>if ((self = [super init])) {
NSMutableArray *array = [NSMutableArray array];
self.terrainBlocks = array;
[array release];
}
return self;
}
</code></pre>
<p>I removed the <code>[array release]</code> line and it no longer gives me the <code>EXC_BAD_ACCESS</code> signal, but I'm now confused about why this works. I thought that when I used the property, it automatically retained it for me, and thus I should release it from within <code>init</code> so that I don't have a leak. I'm thoroughly confused about how this works and all the guides and Stackoverflow questions I've read only confuse me more about how to set properties within my init method. There seems to be no consensus as to which way is the best.</p>
http://stackoverflow.com/questions/1484969/cgcontextsetfillcolorwithcolor-error-excbadaccess0CGContextSetFillColorWithColor error (EXC_BAD_ACCESS).unknown (yahoo)2009-09-28T01:01:11Z2009-09-28T01:54:05Z
<p>I am confused why my app is crashing with this error.</p>
<p>I have implemented the displayLayer method (for rendering CALayer).
The first time this method runs things work fine. But subsequent calls to this is when the error occurs.</p>
<p>The error seems to occur when the self.bgColor is being set to the context fill color.
INTERESTINGLY... if I create the bgColor right before that line, things work. But as it stands, the bgColor is being created upon initialization of this class (the container of the displayLayer method).</p>
<pre><code>-(void)displayLayer:(CALayer *)caLayer
{
UIGraphicsBeginImageContext(caLayer.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, self.bgColor);
CGContextFillRect(context, CGRectMake(0, 0, 320, 25));
[self drawText:context];
// get image buffer
UIImage *imageBuffer = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
// set layer contents to image buffer
caLayer.contents = (id)[imageBuffer CGImage];
}
</code></pre>
http://stackoverflow.com/questions/1451568/excbadaccess-when-using-nsoutlineview0EXC_BAD_ACCESS when using NSOutlineViewkennyisaheadbanger2009-09-20T17:50:43Z2009-09-24T08:52:56Z
<p>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" from the NSOutlineView class.</p>
<p>Here is the header file:</p>
<pre><code>#import <Cocoa/Cocoa.h>
@interface SMLDirectoryDataSource : NSObject {
NSString *rootDirectory;
}
- (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item;
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item;
- (id)outlineView:(NSOutlineView *)outlineView
child:(int)index
ofItem:(id)item;
- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn
byItem:(id)item;
- (void) setRootDirectory:(NSString *)directory;
@end
@interface SMLDirectoryDataItem : NSObject
{
NSString *relativePath, *fullPath;
SMLDirectoryDataItem *parent;
NSMutableArray *children;
}
//+ (SMLDirectoryDataItem *)rootItem;
- (int)numberOfChildren;// Returns -1 for leaf nodes
- (SMLDirectoryDataItem *)childAtIndex:(int)n;// Invalid to call on leaf nodes
- (NSString *)fullPath;
- (NSString *)relativePath;
@end
</code></pre>
<p>And here is the implementation file:</p>
<pre><code>#import "SMLDirectoryDataSource.h"
@implementation SMLDirectoryDataSource
- (id)initWithDirectory:(NSString *)path
{
rootDirectory = path;
return self;
}
- (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item
{
return (item == nil) ? 1 : [item numberOfChildren];
}
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item
{
return (item == nil) ? NO : ([item numberOfChildren] != -1);
}
- (id)outlineView:(NSOutlineView *)outlineView
child:(int)index
ofItem:(id)item
{
NSLog(@"hi there");
if(rootDirectory == nil)
rootDirectory = @"/";
NSLog(rootDirectory);
if(item == nil){
SMLDirectoryDataItem *item = [[SMLDirectoryDataItem alloc] initWithPath:rootDirectory parent:NULL];
return item;
[item release];
}
else
return [(SMLDirectoryDataItem *)item childAtIndex:index];
}
/*(
- (id)outlineView:(NSOutlineView *)outlineView
objectValueForTableColumn:(NSTableColumn *)tableColumn
byItem:(id)item
{
if(rootDirectory == nil)
rootDirectory = @"/";
return rootDirectory;
}
*/
- (void)setRootDirectory:(NSString *)directory
{
rootDirectory = directory;
}
- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item {
if(item == nil)
return rootDirectory;
else
return (id)[(SMLDirectoryDataItem *)item relativePath];
}
- (BOOL)outlineView:(NSOutlineView *)outlineView shouldEditTableColumn:(NSTableColumn *)tableColumn item:(id)item {
return NO;
}
@end
@implementation SMLDirectoryDataItem
//static SMLDirectoryDataItem *rootItem = nil;
#define IsALeafNode ((id)-1)
- (id)initWithPath:(NSString *)path parent:(SMLDirectoryDataItem *)obj
{
fullPath = [path copy];
if (self = [super init])
{
relativePath = [[path lastPathComponent] copy];
parent = obj;
}
return self;
}
/*+ (SMLDirectoryDataItem *)rootItem
{
if (rootItem == nil) rootItem = [[SMLDirectoryDataItem alloc] initWithPath:@"/" parent:nil];
return rootItem;
}*/
// Creates, caches, and returns the array of children
// Loads children incrementally
- (NSArray *)children
{
if (children == NULL) {
NSFileManager *fileManager = [NSFileManager defaultManager];
//NSString *fullPath = [self fullPath];
BOOL isDir, valid = [fileManager fileExistsAtPath:fullPath isDirectory:&isDir];
if (valid && isDir) {
NSArray *array = [fileManager contentsOfDirectoryAtPath:fullPath error:NULL];
if (!array) { // This is unexpected
children = [[NSMutableArray alloc] init];
} else {
NSInteger cnt, numChildren = [array count];
children = [[NSMutableArray alloc] initWithCapacity:numChildren];
NSString *filename = [[NSString alloc] init];
for (cnt = 0; cnt < numChildren; cnt++) {
filename = [fullPath stringByAppendingPathComponent:[array objectAtIndex:cnt]];
SMLDirectoryDataItem *item = [[SMLDirectoryDataItem alloc] initWithPath:filename parent:self];
[children addObject:item];
[item release];
}
[filename release];
}
} else {
NSLog(@"is a leaf... strange");
children = IsALeafNode;
}
}
return children;
}
- (NSString *)relativePath
{
return relativePath;
}
- (NSString *)fullPath
{
// If no parent, return our own relative path
//if (parent == nil) return relativePath;
// recurse up the hierarchy, prepending each parent’s path
//return [[parent fullPath] stringByAppendingPathComponent:relativePath];
return fullPath;
}
- (SMLDirectoryDataItem *)childAtIndex:(int)n
{
return [[self children] objectAtIndex:n];
}
- (int)numberOfChildren
{
id tmp = [self children];
return (tmp == IsALeafNode) ? (0) : [tmp count];
}
- (void)dealloc
{
if (children != IsALeafNode) [children release];
[relativePath release];
[super dealloc];
}
@end
</code></pre>
<p><strong>Update:</strong> updated the code with the latest version</p>
http://stackoverflow.com/questions/1450096/getting-excbadaccess-when-accessing-instance-variable-from-within-uitableview1Getting “EXC_BAD_ACCESS” when accessing instance variable from within UITableView delegate methodDale2009-09-20T02:07:26Z2009-09-22T00:21:36Z
<p>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 a problem.</p>
<p>Here's my .h file</p>
<pre><code>#import <Foundation/Foundation.h>
#import "AlertSummaryCell.h"
#import "AlertDetailViewController.h"
@interface AlertSummaryTableViewController : UITableViewController {
NSDictionary *alerts;
NSString *alertKind;
}
</code></pre>
<p>@property (nonatomic, retain) NSDictionary *alerts;
@property (nonatomic, retain) NSString *alertKind;</p>
<p>@end</p>
<p>In my .m, the application dies at the first NSLog call:</p>
<pre><code>- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSLog(@"AlertSummaryTableViewController.numberOfRowsInSection entered");
NSLog(@" alerts description = %@", [alerts description]);
// To know how many alert summaries we have, get the value for count out of the input dictionary
int theCount = [[alerts objectForKey:@"count"] intValue];
NSLog(@" Going to return %d",theCount);
return theCount;
}
</code></pre>
<p>What am I missing???</p>
<p>There's no problem at all in the viewDidLoad method:</p>
<pre><code> - (void)viewDidLoad {
NSLog(@"AlertSummaryTableViewController.viewDidLoad entered");
NSLog(@" alerts description = %@", [alerts description]);
// We want the View title to include the alert count
// To know how many alert summaries we have, get the value for count out of the input dictionary
int theCount = [[alerts objectForKey:@"count"] intValue];
// Now construct the title text and set our views title to it
NSString *myTitle = [[NSString alloc] initWithFormat:@"%@ Alerts (%d)",alertKind,theCount];
[self setTitle: myTitle];
// Memory cleanup
[myTitle release];
[super viewDidLoad];
}
</code></pre>
http://stackoverflow.com/questions/1393788/breakpoints-get-deactivated-in-xcode-excbadaccess-when-nszombieenabled-yes0Breakpoints get deactivated in Xcode: EXC_BAD_ACCESS when NSZombieEnabled == YESTomen2009-09-08T12:40:25Z2009-09-09T10:39:46Z
<p>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 NSZombieEnabled to YES.</p>
<p>Once i run the app, it crashes with a stack trace of...</p>
<pre><code>#0 0x3025db0c in ___forwarding___ ()
#1 0x30239db2 in __forwarding_prep_0___ ()
#2 0x304f5105 in NSPopAutoreleasePool ()
#3 0x308ee452 in _UIApplicationHandleEvent ()
#4 0x32031425 in PurpleEventCallback ()
#5 0x30235253 in CFRunLoopRunSpecific ()
#6 0x302343c8 in CFRunLoopRunInMode ()
#7 0x308e6209 in -[UIApplication _run] ()
#8 0x308eef81 in UIApplicationMain ()
#9 0x000023ef in main (argc=1, argv=0xbffff0bc) at /Users/tomen/Documents/MIB-Sprint4/main.m:26
</code></pre>
<p>This only happens when NSZombieEnabled is set to YES. If it is not set, the app just runs ( and crashes at different times )</p>
<p>I wanted to add breakpoints like "-[_NSZombie methodSignatureForSelector:]" and others, but they get deactivated during Debugging. I tried it both ways with "Load symbols lazily" turned on and off.</p>
<p>I also tried to set my ~/.gdbinit file to</p>
<pre><code>fb -[NSException raise]
fb -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:]
fb -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:]
#define NSZombies
# this will give you help messages. Set to NO to turn them off.
set env MallocHelp=YES
# might also be set in launch arguments.
set env NSZombieEnabled=YES
set env NSDeallocateZombies=NO
set env MallocCheckHeapEach=100000
set env MallocCheckHeapStart=100000
set env MallocScribble=YES
set env MallocGuardEdges=YES
set env MallocCheckHeapAbort=1
set env CFZombie 5
fb -[_NSZombie init]
fb -[_NSZombie retainCount]
fb -[_NSZombie retain]
fb -[_NSZombie release]
fb -[_NSZombie autorelease]
fb -[_NSZombie methodSignatureForSelector:]
fb -[_NSZombie respondsToSelector:]
fb -[_NSZombie forwardInvocation:]
fb -[_NSZombie class]
fb -[_NSZombie dealloc]
fb szone_error
</code></pre>
<p>which yield this result in the console:</p>
<pre><code>The Debugger has exited with status 0.
[Session started at 2009-09-08 13:48:40 +0200.]
Loading program into debugger…
GNU gdb 6.3.50-20050815 (Apple version gdb-966) (Tue Mar 10 02:43:13 UTC 2009)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i386-apple-darwin".warning: Unable to read symbols for "/System/Library/Frameworks/UIKit.framework/UIKit" (file not found).
warning: Unable to read symbols from "UIKit" (not yet mapped into memory).
warning: Unable to read symbols for "/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics" (file not found).
warning: Unable to read symbols from "CoreGraphics" (not yet mapped into memory).
Pending breakpoint 1 - "-[NSException raise]" resolved
Pending breakpoint 2 - "-[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:]" resolved
Pending breakpoint 3 - "-[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:]" resolved
Pending breakpoint 14 - "szone_error" resolved
Program loaded.
sharedlibrary apply-load-rules all
Attaching to program: `/Users/tomen/Library/Application Support/iPhone Simulator/User/Applications/F77D9D82-0B34-4B8D-9076-AE883A2714F4/MIB.app/MIB', process 279.
Re-enabling shared library breakpoint 1
Re-enabling shared library breakpoint 2
Re-enabling shared library breakpoint 3
Re-enabling shared library breakpoint 14
Re-enabling shared library breakpoint 16
Re-enabling shared library breakpoint 17
Re-enabling shared library breakpoint 18
warning: Couldn't raise load state for requested objfile: "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation" for breakpoint 1/
warning: Couldn't raise load state for requested objfile: "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation" for breakpoint 2/
warning: Couldn't raise load state for requested objfile: "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation" for breakpoint 3/
</code></pre>
<p>Why do my breakpoints get deactivated?</p>
http://stackoverflow.com/questions/1359046/excbadaccess-on-iphone-when-using-obj-nil0EXC_BAD_ACCESS on iPhone when using "obj != nilEli2009-08-31T19:37:32Z2009-08-31T20:49:08Z
<p>I've got a very simple line of code in Objective-C:</p>
<pre><code>if ((selectedEntity != nil) && [selectedEntity isKindOfClass:[MobileEntity class]])
</code></pre>
<p>Occasionally and for no reason I can tell, the game crashes on this line of code with an EXC-BAD-ACCESS. It usually seems to be about the time when something gets removed from the playing field, so I'm guessing that what <em>was</em> the selectedEntity gets dealloc'd, then this results. Aside from being impossible to select exiting Entities (but who knows, maybe this isn't actually true in my code...), the fact that I am specifically checking to see if there <em>is</em> a selectedEntity before I access it means that I shouldn't be having any problems here. Objective-C is supposed to support Boolean short-citcuiting, but it appears to not be EDIT: looks like short-circuiting has nothing to do with the problem.</p>
<p>Also, I put a @try/@catch around this code block because I knew it was exploding every once in a while, but that appears to be ignored (I'm guessing EXC-BAD-ACCESS can't be caught).</p>
<p>So basically I'm wondering if anybody either knows a way I can catch this and throw it out (because I don't care about this error as long as it doesn't make the game crash) or can explain why it might be happening. I know Objective-C does weird things with the "nil" value, so I'm guessing it's pointing to some weird space that is neither an object pointer or nil.</p>
<p>EDIT: Just to clarify, I know the below code is wrong, it's what I was guessing was happening in my program. I was asking if that would cause a problem - which it indeed does. :-)</p>
<p>EDIT: Looks like there is a fringe case that allows you to select an Entity before it gets erased. So, it appears the progression of the code goes like this:</p>
<pre><code>selectedEntity = obj;
NSAutoreleasePool *pool = ...;
[obj release];
if (selectedEntity != nil && etc...) {}
[pool release];
</code></pre>
<p>So I'm guessing that because the Autorelease pool has not yet been released, the object is not nil but its retain count is at 0 so it's not allowed to be accessed anyway... or something along those lines?</p>
<p>Also, my game is single-threaded, so this isn't a threading issue.</p>
<p><strong>EDIT: I fixed the problem, in two ways. First, I didn't allow selection of the entity in that fringe case. Second, instead of just calling [entities removeObjectAtIndex:i] (the code to remove any entities that will be deleted), I changed it to:</strong></p>
<pre><code>//Deselect it if it has been selected.
if (entity == selectedEntity)
{
selectedEntity = nil;
}
[entities removeObjectAtIndex:i];
</code></pre>
<p><strong>Just make sure you are assigning nil to the variable at the same time you release it, as jib suggested.</strong></p>
http://stackoverflow.com/questions/1324574/clever-ways-of-tracking-down-bugs-in-obj-c1clever ways of tracking down bugs in Obj-CBrian Postow2009-08-24T20:31:35Z2009-08-24T21:20:12Z
<p>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 XCode gave me). So, I have a bit of a mystery.</p>
<p>The error I'm getting is:</p>
<pre><code>Program received signal: “EXC_BAD_ACCESS”.
</code></pre>
<p>Now, I'm sure that this means that somewhere I'm releasing something too many times, or something like that. This is the objective C version of a seg-fault, right? </p>
<p>My question is: Since it's not happening in my own code, is there some clever way of tracking down what I'm double releasing? or is code inspection the best bet?</p>
<p>thanks. </p>
http://stackoverflow.com/questions/1251282/iphone-debugging-help-see-when-objects-are-released0iphone debugging help- see when objects are released?Dave2009-08-09T12:18:49Z2009-08-20T01:59:34Z
<p>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.)</p>
<p>It's extremely frustrating trying to hunt down why I'm running into these errors all the time... is there a way in the xcode debugger to keep a watch list of pointers, so you can actually see when various objects are being released? Something, anything that can give me more of a visual understanding of why my program design is flawed?</p>
<p>In particular, I keep having trouble with my "webobject" class I've wrapped all of my NSURLConnection methods in. When I try to call performselector to the view controller that initiated a "webobject" request, I keep getting exc_bad_access when I try to access the webobject's synthesized properties. Is there something fundamentally wrong with my notion that I should wrap all of my webservice-related methods into a class that I can import anywhere?</p>
http://stackoverflow.com/questions/1230858/iphone-core-data-crashing-on-save1Iphone Core Data crashing on Savekiyoshi2009-08-05T02:16:01Z2009-08-10T05:58:00Z
<p>Hi, I'm currently writing an Iphone application using Core Data and I get a <code>EXC_BAD_ACCESS</code> error during the [managedObjectContext save:&&error] code line. This crash only happens after I modify certain fields. More specifically my entity has two string fields (out of about 10 fields), that get their values from a the return of a modal view controller (like a text editor). The crash also only happens after these fields are edited, the first time I put a value in it works fine.</p>
<p>The reason I have string with format constructors with just strings is because I was trying to copy construct... not sure if that happens automatically? Thought maybe retain/release messages from those strings (those two are from the modal view controller), were getting released on dismissal of the modal view controller or something. Guess not though because it still doesn't work.</p>
<p>Here's the code section that is crashing:</p>
<p>[EDITED]</p>
<pre><code> - (void)actionSheet:(UIActionSheet *)modalView clickedButtonAtIndex: (NSInteger)buttonIndex
switch(buttonIndex) {
case 0: {
if(message == nil) {
message = [NSEntityDescription insertNewObjectForEntityForName:@"MailMessage" inManagedObjectContext:self.managedObjectContext];
}
message.toString = txtTo.text;
message.fromString = txtFrom.text;
message.subjectString = txtSubject.text;
message.backgroundColor = [NSNumber numberWithInt:[bgColor intValue]];
message.textArray = [NSString stringWithFormat:@"%@", stringTextArray];
message.htmlString = [NSString stringWithFormat:@"%@", stringHTML];
message.timeStamp = [NSDate date];
message.statusCode = [NSNumber numberWithInt:0];
NSError *error = nil;
if (![message.managedObjectContext save:&error]) {
abort();
}
break;
}
case 1: {
break;
}
}
if(buttonIndex != modalView.cancelButtonIndex) {
[webViewBody loadHTMLString:@"<html><head></head><body></body></html>" baseURL:[NSURL URLWithString:@""]];
[self.navigationController popToRootViewControllerAnimated:YES];
}
</code></pre>
<p>}</p>
<p>And here's the crash log:</p>
<pre>
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00000015
Crashed Thread: 0
Thread 0 Crashed:
0 libobjc.A.dylib 0x30011940 objc_msgSend + 20
1 CoreData 0x367f7d3e -[NSKnownKeysDictionary1 dealloc] + 82
2 CoreData 0x367f7cda -[NSKnownKeysDictionary1 release] + 34
3 CoreData 0x3687eec4 -[NSManagedObject(_NSInternalMethods) _setOriginalSnapshot__:] + 40
4 CoreData 0x36821030 -[NSManagedObjectContext(_NSInternalAdditions) _clearOriginalSnapshotAndInitializeRec:] + 16
5 CoreData 0x368205f2 -[NSManagedObjectContext(_NSInternalAdditions) _didSaveChanges] + 958
6 CoreData 0x368133bc -[NSManagedObjectContext save:] + 412
7 Decome 0x0001fdd6 -[CreateMessageViewController actionSheet:clickedButtonAtIndex:] (CreateMessageViewController.m:163)
8 UIKit 0x30a6cbd8 -[UIActionSheet(Private) _buttonClicked:] + 256
9 CoreFoundation 0x30256dd4 -[NSObject performSelector:withObject:withObject:] + 20
10 UIKit 0x3096e0d0 -[UIApplication sendAction:to:from:forEvent:] + 128
11 UIKit 0x3096e038 -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 32
12 UIKit 0x3096e000 -[UIControl sendAction:to:forEvent:] + 44
13 UIKit 0x3096dc58 -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 528
14 UIKit 0x309a6e9c -[UIControl touchesEnded:withEvent:] + 452
15 UIKit 0x309a60d4 -[UIWindow _sendTouchesForEvent:] + 520
16 UIKit 0x309a5464 -[UIWindow sendEvent:] + 108
17 UIKit 0x30936e3c -[UIApplication sendEvent:] + 400
</pre>
<p>Any help is appreciated, Thanks.</p>
<p>UPDATE: Also, even though the program crashes, when I open it back up it the data has saved correctly. So the EXC_BAD_ACCESS must happen after the save has gotten at least far enough to store in the persistent store i think.</p>
<p>If I comment out the save line, the code runs fine now. But it doesn't save after i close and exit. If I run the save line in my Root View Controllers willAppear function, it throws the same EXC_BAD_ACCESS error. The console doesn't say anything other than EXC_BAD_ACCESS
if I do a backtrace I get :</p>
<pre>
#0 0x30011940 in objc_msgSend ()
#1 0x367f7d44 in -[NSKnownKeysDictionary1 dealloc] ()
#2 0x367f7ce0 in -[NSKnownKeysDictionary1 release] ()
#3 0x3687eeca in -[NSManagedObject(_NSInternalMethods) _setOriginalSnapshot__:] ()
#4 0x36821036 in -[NSManagedObjectContext(_NSInternalAdditions) _clearOriginalSnapshotAndInitializeRec:] ()
#5 0x368205f8 in -[NSManagedObjectContext(_NSInternalAdditions) _didSaveChanges] ()
#6 0x368133c2 in -[NSManagedObjectContext save:] ()
#7 0x0000314e in -[RootViewController viewWillAppear:] (self=0x11b560, _cmd=0x3014ecac, animated=1 '\001') at /Users/inckbmj/Desktop/iphone/Decome/Classes/RootViewController.m:85
</pre>
<p>Sorry the code wasn't properly formatted before. When this view controller gets created if it is not a new "message" it is passed a message object obtained from a fetchedResultsController like so:</p>
<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
MailMessage *aMessage = (MailMessage *)[fetchedResultsController objectAtIndexPath:indexPath];
[messageView loadMessage:aMessage viewOnly:NO usingTemplate:NO];
messageView.managedObjectContext = self.managedObjectContext;
[self.navigationController pushViewController:messageView animated:YES];
}
</code></pre>
<p>(the first set of code is from the MessageViewController.m file which is the class that messsageView is)</p>
<p>It only crashes if I present my EditorViewController as a modal view and then return.
Even if I change the textArray and htmlString lines (which are the only things the modal view affects) to:</p>
<pre><code>message.textArray = @"HELLO";
message.htmlString = @"HELLO";
</code></pre>
<p>it still crashes. If I comment both lines out however it doesn't crash.</p>
<p>So it seems like it crashes if I present a modal view and then try to edit either the textArray or htmlString fields of my NSOManagedObject...</p>
<p>Here is where i present the view:</p>
<pre><code>- (void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event {
if(!viewOnly) {
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView: txtTo];
location = [touch locationInView: webViewBody];
if(CGRectContainsPoint(webViewBody.bounds, location)) {
[editor loadTextArrayString:stringTextArray];
[self presentModalViewController:editor animated:YES];
}
}
}
</code></pre>
<p>and where i dismiss it:</p>
<pre><code>-(void)returnWithTextArray:(NSString *)arrayString HTML:(NSString *)html bgColor:(NSNumber *)numColor {
[self dismissModalViewControllerAnimated:YES];
self.stringTextArray = [NSString stringWithFormat:@"%@", arrayString];
self.stringHTML = [NSString stringWithFormat:@"%@", html];
self.bgColor = [NSNumber numberWithInt:[numColor intValue]];
[webViewBody loadHTMLString:self.stringHTML baseURL:[NSURL URLWithString:@""]];
}
</code></pre>
http://stackoverflow.com/questions/1248810/can-somebody-give-me-a-hand-about-this-stacktrace-in-iphone-app0Can somebody give me a hand about this stacktrace in iPhone app?unknownthreat2009-08-08T12:52:38Z2009-08-08T17:36:20Z
<pre><code>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 -[NSObject release] ()
#4 0x30a002a0 in FlushNamedImage ()
#5 0x30250a26 in CFDictionaryApplyFunction ()
#6 0x30a001a4 in _UISharedImageFlushAll ()
#7 0x30a00738 in +[UIImage(UIImageInternal) _flushCacheOnMemoryWarning:] ()
#8 0x3054dc80 in _nsnote_callback ()
#9 0x3024ea58 in _CFXNotificationPostNotification ()
#10 0x3054b85a in -[NSNotificationCenter postNotificationName:object:userInfo:] ()
#11 0x3054dbc0 in -[NSNotificationCenter postNotificationName:object:] ()
#12 0x30a00710 in -[UIApplication _performMemoryWarning] ()
#13 0x30a006a8 in -[UIApplication _receivedMemoryNotification] ()
#14 0x30a005d8 in _memoryStatusChanged ()
#15 0x30217416 in __CFNotificationCenterDarwinCallBack ()
#16 0x3020d0b0 in __CFMachPortPerform ()
#17 0x30254a76 in CFRunLoopRunSpecific ()
#18 0x3025416a in CFRunLoopRunInMode ()
#19 0x320452a4 in GSEventRunModal ()
#20 0x308f037c in -[UIApplication _run] ()
#21 0x308eea94 in UIApplicationMain ()
#22 0x00002096 in main (argc=1, argv=0x2ffff514)
</code></pre>
<p>Currently I have a very weird error in my program. Sometimes it happens, and sometimes, it doesn't. But here's a summary of what's going on:</p>
<p>When the program starts up:</p>
<ul>
<li>saved data (just a short plist consists of 13 elements) is loaded if it exists.</li>
<li>a huge plist containing 1014 strings is loaded into NSMutableDictionary.</li>
<li>another plist containing 78 strings is loaded into an NSArray.</li>
<li>a .mp4 movie is played.</li>
</ul>
<p>The error occurs at a part where OpenGL ES View is being removed and the user is about to view one of the strings of the 1014 strings in the NSMutableDictionary.</p>
<p>This error never occur in the simulator. It only occur on the iPhone, and sometimes it runs fine but sometimes it crushes.</p>
<p>However, after reading the stacktrace, I see CFDictionaryApplyFunction in there, so I thought it might be one of the possible causes. Is it because on the simulator, it reads things so fast that the whole dictionary from the plist is loaded at an instant, while on the device, it reads slower? Honestly, I do not know exactly how the dictionary works. Does it read through all 1014 strings at an instant, or it uses some other threads to read slowly? Please advice. Thank you.</p>
http://stackoverflow.com/questions/1237192/unexpected-excbadaccess-in-objective-c1Unexpected EXC_BAD_ACCESS in Objective-Cbrainfsck2009-08-06T06:02:42Z2009-08-06T08:12:32Z
<p>Hi,</p>
<p>I have the following method:</p>
<pre><code>-(void)testAPIModule {
self.requests = [NSMutableArray array];
NSLog(@"making arrays");
/*(A)*/ id array1 = [NSArray arrayWithObjects:[NSNumber numberWithInt:1], [NSNumber numberWithFloat:2], nil];
/*(B)*/ id array2 = [NSArray arrayWithObjects:[NSNumber numberWithInt:4], [NSNumber numberWithInt:5]];
NSLog(@"made array=%@",array2);
for( ServerRequest *req in self.requests ) {
[Networker sendRequest:req withDelegate:self];
[req release];
}
}
</code></pre>
<p>The code runs as expected.</p>
<p>However, if I comment out line (A) OR remove the ",nil" at the end of it, I get an <code>EXC_BAD_ACCESS</code> error at line (B)! According to the debugger, the error occurs in CFRetain in the +[NSArray arrayWithObjects] built-in constructor.</p>
<p>In addition, if I comment out line (A) and comment out the for(...) loop, the code runs through the method.</p>
<p>This is very unexpected to me. What am I doing wrong on line (B)? And why would creating a completely different array on line (A) let the method run through? And why does commenting out the for(...) loop prevent the error on line (B) that is before it?</p>
<p>Can someone explain why this is? Or at least give me some advice for debugging? I've already verified that the method is only running once and that "self" is valid.</p>
http://stackoverflow.com/questions/1088582/uialertview-fails-to-show-and-results-in-excbadaccess-error1UIAlertView fails to show and results in “EXC_BAD_ACCESS” errorEric de Araujo2009-07-06T18:37:32Z2009-07-06T21:09:49Z
<p>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 UIAlterView and displayed to the user. The alert doesn't have any options (hence why I'm not calling a delegate), but simply notifies the user of what happened.</p>
<p><strong>Edit:</strong> Below is the full method (previously displayed partial). When I comment out everything before the <code>UIAlertView</code> and substitute the string @"test" instead of passing message the Alert is shown successfully. Am I not handling memory correctly with my structure?</p>
<pre><code>- (IBAction)joinButton {
struct userInfo localUser;
[emailAddress resignFirstResponder];
//convert textField text to char array in structure
localUser.firstName = [self convertStringtoCharArray:firstName.text];
localUser.lastName = [self convertStringtoCharArray:lastName.text];
localUser.username = [self convertStringtoCharArray:username.text];
localUser.email = [self convertStringtoCharArray:emailAddress.text];
localUser.ipAddress = [self convertStringtoCharArray:localIPAddress.text];
localUser.latitude = currentLocation.coordinate.latitude;
localUser.longitude = currentLocation.coordinate.longitude;
//pass structure to be sent over socket
int result = [myNetworkConnection registerWithServer:&localUser];
NSString *message = nil;
//process result of sending attempt
if (result == 0) {
//registration succesful
message = [NSString stringWithString:@"Registration successful"];
} else if (result == 1) {
//server unavailable
message = [NSString stringWithString:@"Server unavailable. Please check your wi-fi settings and try again."];
} else if (result == 2) {
//unable to establish connection
message = [NSString stringWithString:@"Unable to communicate with server. Please check your wi-fi settings and try again."];
} else if (result == 3) {
//username already in use
message = [NSString stringWithString:@"Username in use. Try another username."];
}
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Registration"
message:message
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
[alert release];
}
</code></pre>
<p>When I execute the code the iPhone greys out like it is about to display an alert but crashes. I get a <code>EXC_BAD_ACCESS</code> error in the console. Am I not releasing either the alert or the message correctly? Here is the console output:</p>
<pre><code>Program received signal: “EXC_BAD_ACCESS”.
(gdb) backtrace
#0 0x30011944 in objc_msgSend ()
#1 0x3054803e in NSPopAutoreleasePool ()
#2 0x3054c808 in -[NSAutoreleasePool release] ()
#3 0x30936ac4 in _UIApplicationHandleEvent ()
#4 0x3204696c in PurpleEventCallback ()
#5 0x30254a76 in CFRunLoopRunSpecific ()
#6 0x3025416a in CFRunLoopRunInMode ()
#7 0x320452a4 in GSEventRunModal ()
#8 0x308f037c in -[UIApplication _run] ()
#9 0x308eea94 in UIApplicationMain ()
#10 0x000020bc in main (argc=1, argv=0x2ffff508) at /Users/reu2009/Documents/iPhone Development/Development/BuddyTracker/main.m:14
(gdb) frame 10
#10 0x000020bc in main (argc=1, argv=0x2ffff508) at /Users/reu2009/Documents/iPhone Development/Development/BuddyTracker/main.m:14 14 int retVal = UIApplicationMain(argc, argv, nil, nil);
</code></pre>
<p><strong>Edit:</strong> removed <code>[message release];</code> and assigned strings using <code>[NSString stringWithString];</code> based on answers.</p>
http://stackoverflow.com/questions/1071521/calling-functions-from-within-functionfloat-verybigarray-long-sizeofarray-from-1Calling functions from within function(float *VeryBigArray,long SizeofArray) from within objC method fails with EXC_BAD_ACCESSyan bellavance2009-07-01T21:39:30Z2009-07-03T20:37:54Z
<p>Ok I finally found the problem. It was inside the C function(CarbonTuner2) not the objC method. I was creating inside the function an array of the same size as the file size so if the filesize was big it created a really big array and my guess is that when I called another function from there, the local variables were put on the stack which created the EXC_BAD_ACCESS. What I did then is instead of using a variable to declare to size of the array I put the number directly. Then the code didnt even compile. it knew. The error wassomething like: Array size too big. I guess working 20+hours in a row isnt good XD But I am definitly gonna look into tools other than step by step debuggin to figure these ones out. Thanks for your help. Here is the code. If you divide gFileByteCount by 2 you dont get the error anymore:</p>
<pre><code>// ConverterController.h
# import <Cocoa/Cocoa.h>
# import "Converter.h"
@interface ConverterController : NSObject {
UInt64 gFileByteCount ;
}
-(IBAction)ProcessFile:(id)sender;
void CarbonTuner2(long numSampsToProcess, long fftFrameSize, long osamp);
@end
// ConverterController.m
# include "ConverterController.h"
@implementation ConverterController
-(IBAction)ProcessFile:(id)sender{
UInt32 packets = gTotalPacketCount;//alloc a buffer of memory to hold the data read from disk.
gFileByteCount=250000;
long LENGTH=(long)gFileByteCount;
CarbonTuner2(LENGTH,(long)8192/2, (long)4*2);
}
@end
void CarbonTuner2(long numSampsToProcess, long fftFrameSize, long osamp)
{
long numFrames = numSampsToProcess / fftFrameSize * osamp;
float g2DFFTworksp[numFrames+2][2 * fftFrameSize];
double hello=sin(2.345);
}
</code></pre>
http://stackoverflow.com/questions/758895/iphone-objective-c-array-of-objects-misbehaving-excbadaccess-in-tableviewco0[iPhone] Objective-C array of objects misbehaving (EXC_BAD_ACCESS) in TableViewControllermatthew992009-04-17T03:26:58Z2009-04-17T07:22:44Z
<p>Hello stackoverflow. I'm new to Objective-C, and I can't figure out why the NSString objects in my array of Car objects seem to have been released.</p>
<p>Here's my Car.m class:</p>
<pre><code>
#import "Car.h"
@implementation Car
@synthesize categoryId;
- (id)initWithPrimaryKey:(NSInteger)pk categoryId:(NSNumber *)catId carName:(NSString *)n {
if (self = [super init]) {
primaryKey = pk;
categoryId = catId;
name = n;
}
return self;
}
- (void)dealloc {
[name release];
[categoryId release];
[super dealloc];
}
- (NSInteger)primaryKey {
return primaryKey;
}
- (NSString *)name {
return name;
}
- (void)setName:(NSString *)aString {
if ((!name && !aString) || (name && aString && [name isEqualToString:aString])) return;
[name release];
name = [aString copy];
}
@end
</code></pre>
<p>And here's my Simple_TableViewController.m class. The listData instance variable is set correctly in viewDidLoad(). In the debugger, the NSString *name property of each array element is intact. Then, in every other method, listData is corrupt. It has all the Car elements with the correct primaryKey and categoryId values, but the NSString *name property is "Invalid."</p>
<pre><code>
#import "Simple_TableViewController.h"
@implementation Simple_TableViewController
- (void)viewDidLoad {
NSMutableArray *array = [[NSMutableArray alloc] init];
Database *database = [Database instance];
array = [database getAllCars];
[self setListData:array];
[array release];
}
- (NSMutableArray *)listData {
return listData;
}
- (void)setListData:(NSMutableArray *)newListData {
if (listData != newListData) {
[listData release];
listData = [newListData mutableCopy];
}
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (void)dealloc {
[listData release];
[super dealloc];
}
- (NSInteger)tableView:(UITableView *)tableView
numberOfRowsInSection:(NSInteger)section
{
return [listData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero
reuseIdentifier:SimpleTableIdentifier] autorelease];
}
NSUInteger row = [indexPath row];
Car *car = [listData objectAtIndex:row];
cell.text = car.name;
cell.font = [UIFont boldSystemFontOfSize:17];
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView
indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 0;
}
- (NSIndexPath *)tableView:(UITableView *)tableView
willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger row = [indexPath row];
if (row == 0) {
return nil;
}
return indexPath;
}
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger row = [indexPath row];
NSString *message = [[NSString alloc] initWithFormat:@"You selected %@", [[listData objectAtIndex:row] name]];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Row Selected!"
message:message
delegate:nil
cancelButtonTitle:@"Yes I Did"
otherButtonTitles:nil];
[alert show];
[message release];
[alert release];
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 35;
}
@end
</code></pre>
<p>I've fiddled with Zombie this and retain that until my fingers fell off. I did away with the @property (nonatomic, retain) and @synthesize stuff for the listData variable, and I still have the same problem.</p>
<p>Thanks in advance for any advice you have to offer!</p>
http://stackoverflow.com/questions/64881/why-is-my-cocoa-program-getting-excbadaccess-during-startup1Why is my cocoa program getting EXC_BAD_ACCESS during startup?AlanKley2008-09-15T17:24:01Z2008-10-16T15:21:03Z
<p>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?</p>