I am new to ios programming, need to implement something like a google search box i.e., autofill text field. My scenario is as follow 1.when user type in text field 2.background call to webservice for data(request data= text field data).
for example:- if user type "abc" in text field request data for web service call should be "abc" and web service gives response on that. Now next time user type "d" i.e textfield contains "abcd" service response must consider the appended text.(something like google search field) 3.web service call should be Asynchronous. 4.response should be displayed in drop down list.
Is it possible in ios??? Any tutorial or example would be appreciated. Thanks in advance.
I will assume you are talking about a Restful webservice and NOT SOAP, for the love of god!
Yes, of course it is possible. You can follow this approach, I could use an HTTP lib such as AFNetworking to make the request but for the sake of simplicity I'm just init'ing the NSData with the contents of URL on background and updating UI on main thread using GCD.
Set your UITextField delegate to the ViewController you are working on
viewDidLoad:
methodoverride the
UITextField
delegate methodtextField:shouldChangeCharactersInRange:replacementString:
with:As you can see there are a list of concepts that you need to get used to:
dispatch_async
stuff)Performance update
length % 3
.I suggest you read something about those