I'm implementing a location based keyword search. If anyone has seen Yelp's search bar, it is what i'm trying to do. Basically once the search bar is clicked i want to provide one text field input for the keyword and the other for location. What UI element would I subclass? How would I go about this?
|
|
I also did a similar app, quite a while ago. Initial look:
Functionality Part
Hope this helps. |
|||
|
|
|
Yelp's implementation looks to be a custom view with two UITextField objects, with a translation and scale animation to make it appear to be zoomed in from the top. A table view is added to the hierarchy after the animation is finished. The keyboard is invoked by making one of the text fields first responder. BTW - generally speaking, composing UI elements together is preferred to subclassing. |
|||
