Search code examples
objective-ciphoneuitextfieldnsinteger

retrieving integer value from the UITextField into a NSInteger variable


UITextField *textField;
NSInteger intRollNumber;

I want to take rollNumber as input from the textField and store the value into intRollNumber .

How i do that? Because I am unable to convert the string into integer.


Solution

  • Like this?

    NSString *str = [textField text]
    int RollNumber = [str intValue];