I want auto filled UITextFiled in my app. In it when user type some letter it will call web service and show response in UIpPickerView like to search city. When we type any letter it shows some city names. Can anyone knows how to do it? Please help me.
Share
To get data from server asynchronously you can use the
NSURLConnectionandNSURLConnectionDelegatemethodsIn interface file:
In implementation file:
You must set the delegate to the text field and you have to implement the picker using the data from the
NSURLConnectionDelegatemethod. And this is a tutorial for loading picker view.