Re: Getting started in Cocoa and IB
Re: Getting started in Cocoa and IB
- Subject: Re: Getting started in Cocoa and IB
- From: Julien Silland <email@hidden>
- Date: Tue, 3 Dec 2002 17:03:23 +0100
Le mardi, 3 dic 2002, ` 16:49 Europe/Paris, John Clark a icrit :
However, my very simplistic first try seems to be very frustrating.
What I need is
a hint on how to have a NSTextField result in an action which takes
the string
typed by the user, and placed in a regular 'char' variable for use in
a set of
standard C functions.
You can try the cString function of the NSString object. It returns a
const char * type.
myString = [myTextField stringValue];
myConstChar = [myString cString];
_______________________________________________
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.