I have JSON web-service and my task is to parse the web service and store the data into UITableview.
I am parsing the web service using NSURLConnection methods.
After parsing the web-service i got the response what I wanted .
But the issue is that my UIViewController is calling UITableView Delegate and Datasource methods first and then it calls web-service so my UITableView doesn't get any response.
Even though I call the web-service first it calls all the UITableView Delegate and Datasource methods first and then web-service so my table view doesn't get any response.
After calling the web-service i get perfect response.
So if somebody knows any solution please help me. Thank you.