Re: NSString into *arguments[]
Re: NSString into *arguments[]
- Subject: Re: NSString into *arguments[]
- From: Nir Soffer <email@hidden>
- Date: Mon, 1 May 2006 14:08:35 +0300
On 01/05/2006, at 13:11, Kevin Bracey wrote:
char *arguments[] = { "/usr/local/accessit/data/Brooklyn.fdb",
[copyToPath UTF8String] , NULL };
UTF8String returns a const char *. Try
const char *arguments[] = { "foo", [bar UTF8String] , NULL };
I think you want to use NSTask.
Best Regards,
Nir Soffer
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden