if i have a tag of text field then how can i pick the value of textfield in iPhone sdk
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.
|
|
|
you should be fine with something like (assuming that the TextField is a self.view's subview):
|
|||
|
|
|
NSString *text = [(UITextField *)[self.view viewWithTag:tag] text]; |
|||
|
|
|
Use:
You need to replace 100 by your own tag. |
|||||
|
|
|
Try below one
|
|||||
|
|


