Re: Dockling not working, at all, no clue why!
Re: Dockling not working, at all, no clue why!
- Subject: Re: Dockling not working, at all, no clue why!
- From: Andy Lee <email@hidden>
- Date: Sat, 6 Apr 2002 18:04:45 -0500
At 4:44 PM -0600 4/6/02, Stevos wrote:
[find setArguments:[NSArray arrayWithObjects:@"/Applications", @"-name
*.app"]];
Not sure about the rest of the code, but the list of objects you pass
to +arrayWithObjects: has to end with a nil:
[find setArguments:
[NSArray
arrayWithObjects:
@"/Applications",
@"-name *.app",
nil]]; // <-- ends the list
So the problem is very possibly not a dockling thing at all.
--Andy
_______________________________________________
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.