Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a beginner, thank you very much.

share|improve this question
12  
I must say, it's kind of brutal for someone to have down-voted this person's first question. For a beginner, it's a good question — be a little forgiving of people whose native language is not English. At least provide some constructive feedback of how to better structure the question. Have a little heart and make sure this community is welcoming, even for newbies. – Quinn Taylor Jun 12 '09 at 23:41
1  
Agreed. +1 to counteract. – Abizern Jun 13 '09 at 1:23
3  
Me too! Sadly, some people seem to take pleasure in belittling others or marking them down. That's not what this community was designed for. Every single one of us was a newbie at one time. – Bender Sep 5 '11 at 2:50

3 Answers

up vote 37 down vote accepted

For an NSString you would use:

NSString *myString = [theTextField stringValue];

For an int you would use:

int myInt = [theTextField intValue];

There are many other methods for getting the value from a control. Have a look at http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSControl_Class/Reference/Reference.html#//apple_ref/occ/cl/NSControl for more info, under the "Setting the Control’s Value" section.

Here's a list:

  • doubleValue
  • floatValue
  • intValue
  • integerValue
  • objectValue
  • stringValue
  • attributedStringValue
share|improve this answer
thank u very much:) – anakin Jun 12 '09 at 6:07

[myField stringValue]

NSTextField inherits NSControl, and NSControl defines the stringValue/setStringvalue methods.

share|improve this answer
thank u very much:) – anakin Jun 12 '09 at 6:06

To get stringValue

  NSString *str;
       str=textfield.stringValue;
       str=[textfield stringValue];

To get floatValue

float = [textfield floatValue];

To get intValue

int = [textfield intValue];

like this we can find for all value...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.