Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

if i have a tag of text field then how can i pick the value of textfield in iPhone sdk

share|improve this question

4 Answers

up vote 4 down vote accepted

you should be fine with something like (assuming that the TextField is a self.view's subview):

NSString *text = [(UITextField *)[self.view viewWithTag:THE_TAG] text];
share|improve this answer
@Thanx Bruno it is working – Jaspreet Singh Aug 2 '12 at 12:12

NSString *text = [(UITextField *)[self.view viewWithTag:tag] text];

share|improve this answer
try this,help for me – ravinder kumar Dec 26 '12 at 8:09

Use:

UITextField *textField = (UITextField*)[self.view viewWithTag:100];

NSLog(@"%@",textField.text);

You need to replace 100 by your own tag.

share|improve this answer
thank you it is working – Jaspreet Singh Aug 2 '12 at 12:13
@JaspreetSingh: with pleasure – Midhun MP Aug 2 '12 at 12:27

Try below one

UITextField *textField = (UITextField*)[self.view viewWithTag:tag_Number];
NSString* textString=[textField text];
//Use textString  further
share|improve this answer
@thanx Kamarshad – Jaspreet Singh Aug 2 '12 at 12:13
@JaspreetSingh you welcome..!!! – Kamarshad Aug 2 '12 at 12:14

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.