10.3 problem...or me
10.3 problem...or me
- Subject: 10.3 problem...or me
- From: Bo Gunn <email@hidden>
- Date: Thu, 30 Oct 2003 14:28:51 -0600
I have written an application which needs reference to a filename (or
filenames) opened by the user at many different times. A solution that
works on Jaguar is defined a global variable NSOpenPanel *panel and defining
two functions
(1) - (NSArray *) panel_filenames
{
return [panel filenames];
}
And
(2) - (unsigned) panel_filenames_count
{
return [[panel filenames] count]];
}
This method works fine on Jaguar but fails on Panther. I get a BAD_ACCESS
error upon the second time I call the first function. Any ideas (or
constructive criticism)?
b.o.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.