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 protected])
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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]