Quote:
Originally Posted by mr-sk
Hello,
The UIToolBar has two views, a UIView w/UITextViews and a UIView w/UITableView.
The UITableView that gets called via a UIToolBar. The first time the UITableView loads, it hits the DB and gets the info. I "tab" back to the UIView w/UITextViews select some data, and then "tab" back to the UITableView, but none of the delegate methods get called, like viewDidLoad or initWithNibName or anything, thus the data in the table is stale.
How can I either
1) Kill the view so its forced to re instantiate and thus reload.
2) Force a reload? But even viewDidLoad isn't getting called so ...
Any ideas?
- sk
|
Have tried reload option of table?
[tableView reloadData];