Hello,
I have a tableView with clickable cells, letting the user navigate to another tableView. I use the code:
to get the view to be displayed.
The view will be "created" everytime the user clicks on one of the cells. My problem is that I, in the viewDidLoad section, have an NSURLConnection and a XMLParser to get the info to be showed in the view and I only want to make this once or at least not everytime the view is displayed. Is it possible to only make it once?
Thanks in advance
MACloop
I have a tableView with clickable cells, letting the user navigate to another tableView. I use the code:
Code:
[self.navigationController pushViewController:theViewToBeShowed animated:YES];
The view will be "created" everytime the user clicks on one of the cells. My problem is that I, in the viewDidLoad section, have an NSURLConnection and a XMLParser to get the info to be showed in the view and I only want to make this once or at least not everytime the view is displayed. Is it possible to only make it once?
Thanks in advance
MACloop