I want to create UISearchbar with two input fields one for keyword and the other for location like Yelp application , how i can do something like this , please advice

I want to create UISearchbar with two input fields one for keyword and the
Share
I don’t think you can have two search parameters in the same UISearchbar. You will have to create your search component for that, maybe a view with two UItextField and a Search Button and you can use UITextFieldDelegates to perform the various search operations.
Refer to Customizing Appearance of UISearchBar from Apple.