dunno if you want an answer to this now, it was two months ago and you have probably figured it out already. but for others, like me, who browse these forums in search of information, here is the answer to the question:
<tt>
// assume we have a NSTextField called "field"
NSString *str = [[field stringValue] retain];
// do things with the string
[field setStringValue:str];
[str release];
</tt>
I'm still not too good about memory management, so don't trust me on the retains and releases... I assume that [field stringValue] returns an autoreleased reference, is this right?
theo