-(void)viewWillAppear:(BOOL)animated
{
AppDelegate *appDelegate = (AppDelegate *) [ [UIApplication sharedApplication] delegate];
List = [appDelegate getList];
}
Here getList is a method that gets the 29000 number of list from the sqlite3 database.I am getting the list but it takes very huge time to respond in the device. Is there any other way to retrieve the data?