program crashes because of a variable declaration
program crashes because of a variable declaration
- Subject: program crashes because of a variable declaration
- From: Martin Batholdy <email@hidden>
- Date: Thu, 11 Jun 2009 15:38:26 +0200
Hi,
my program crashes if I add a variable declaration to a header file.
I really don't understand what the hell is wrong with it;
The programm works fine with this lines;
@interface AppleScriptHandler : NSObject {
NSDictionary *errorInfo;
NSString *appFolder, *filePathFinderFiles;
}
But it crashes on startup when I add something like;
@interface AppleScriptHandler : NSObject {
NSDictionary *errorInfo;
NSArray *test;
NSString *appFolder, *filePathFinderFiles;
}
... or this;
@interface AppleScriptHandler : NSObject {
NSString *xxx;
NSDictionary *errorInfo;
NSString *appFolder, *filePathFinderFiles;
}
I don't change anything but this line ...
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden