Re: Burning DVD-Video with DiskRecording Framework
Re: Burning DVD-Video with DiskRecording Framework
- Subject: Re: Burning DVD-Video with DiskRecording Framework
- From: Yann Bizeul <email@hidden>
- Date: Sat, 19 Jun 2004 14:35:58 +0200
I know nothing about DVD burning, but I would replace :
>
NSMutableString *dvdFolder = [[NSMutableString alloc]
>
initWithCapacity:128];
>
[dvdFolder appendString:[textDestDirectory stringValue]];
>
[dvdFolder appendString:@"/MY_DVD"];
with :
NSString *dvdFolder = [NSString stringWithFormat:
@"'%@/MY_DVD",[textDestDirectory stringValue]];
just wanted to say this :-)
--
Yann Bizeul - yann at tynsoe.org
http://projects.tynsoe.org/
_______________________________________________
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.