Problem in ios.
I have a problem regarding the webservice data fetching.i have two websevice named getManagerEvents and WhoAreComing.i want to get a eventid from the getManagerEvents and then after in another class i have to print the data based on the eventid and call the another whoarecoming webservice and print the data in the based on the both webservices.
Code:
NSString *strURL = [NSString stringWithFormat:@"%@getManagerEvents?ManagerId=%d",WEBSERVICE_URL,kSHARED_INSTANCE.axcessUser.iUserId];
ASIHTTPRequest *eventListRequest = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:strURL]];
[eventListRequest setRequestMethod:@"GET"];
[eventListRequest startSynchronous];
SBJsonParser *json =[[SBJsonParser alloc]init];
NSDictionary *dictResponse = [json objectWithString:eventListRequest.responseString];
[HUD hide:YES];
[self parseResponse:dictResponse];