If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Assuming you're talking about an NSTextField (which are used for draggable labels in IB), it doesn't respond to setString: (which is an NSTextView and NSMutableString method, IIRC). It responds to setStringValue: (from NSControl).
Chuck ___ "Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
If you had declared the IBOutlet as a NSTextField, the compiler should have warned you about NSTextField not having a setString: method. So you should definitely set your types explicitly whenever you can.