I am parsing data to a table view, but there are lakhs of names in the server page.
First, I wrote all the server data in different pages in the server side and I put a "View more" button under the table view. When the user clicks that, the page number will be increased by one and data on the second page is shown to the table view. The problem is that I lose the first page's data in the table view. How can I append the new data to the previous data when I click "View more"?
This is the viewDidLoad
- (void)viewDidLoad
{
[super viewDidLoad];
sharedClass=[SharedClass sharedInstance];
[self.navigationController setNavigationBarHidden:YES];
Noresult.hidden = YES;
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
// NSString *userid = [defaults objectForKey:@"userid"];
NSString *userid = @"3";
NSString *search_key = @"";
NSString *type=@"user";
page = 1;
ServerRequests *ser_req = [[ServerRequests alloc] init];
ser_req.server_req_proces = self;
NSString *postdata = [[NSString alloc] initWithFormat:@"{\"function\":\"search\", \"parameters\": {\"user_id\": \"%@\",\"search_key\": \"%@\",\"type\": \"%@\",\"page\": \"%d\"},\"token\":\"\"}",userid,search_key,type,page];
[ser_req sendServerRequests:postdata];
NSLog(@"array=========>>%@",postdata);
sharedClass.oprtn = @"load table";
}
And this is code inside viewMore button
-(IBAction)Viewmore:(id)sender
{
NSString *userid = @"3";
NSString *search_key = searchBaar.text;
NSString *type=@"user";
page = page + 1 ;
ServerRequests *ser_req = [[ServerRequests alloc] init];
ser_req.server_req_proces = self;
NSString *postdata = [[NSString alloc] initWithFormat:@"{\"function\":\"search\", \"parameters\": {\"user_id\": \"%@\",\"search_key\": \"%@\",\"type\": \"%@\",\"page\": \"%d\"},\"token\":\"\"}",userid,search_key,type,page];
[ser_req sendServerRequests:postdata];
sharedClass.oprtn = @"load table";
}
NSArrayorNSMutableArray) – Midhun MP Nov 5 '12 at 5:17