In some applications like Mail, when you have a UITextField, there is a little + button to the right. When you tap it, a modal view controller comes up which you can select a phone number, address, etc from, and it will appear in the text field. I was wondering how to implement this in my own app. Thanks,
Isaac
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 you want the plus button inside the text field, take a look at the
|
|||
|
|
|
You can do this by
you can also refer to this trick also |
||||
|
|
|
You can do this by having a regular UIView that contains a UITextField and a UIButton as subviews. E.g
When the button is tapped you can bring up the address book picker (or anything else) as a modal view, and when it closes update the text field as necessary. |
||||
|
|