Re: Xcode 3.1 Debugger Problems
Re: Xcode 3.1 Debugger Problems
- Subject: Re: Xcode 3.1 Debugger Problems
- From: Andy Lee <email@hidden>
- Date: Fri, 8 Aug 2008 13:06:19 -0400
On Aug 8, 2008, at 11:41 AM, TFS - Tobias Jordan wrote:
@implementation AppController
- (void)awakeFromNib
{
NSString *jo = @"hi";
NSLog(@"%@", jo);
}
@end
When debugging the code above the debugger crashes on: Cannot access
memory at memory address 0x4.
Does someone know how to fix this problem?
There is nothing wrong with the above code in itself.
What line does the debugger crash on? Can you post a stack trace? My
first guess would be that you are over-releasing something, perhaps
the very receiver of the above -awakeFromNib message. What if you put
a breakpoint in your class's -dealloc method?
--Andy
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden