iphone - reload TableView when the app comeback from a modalView -
basically problem... can't reload data of table view when comeback modal view.
i try reload data table view result not effects.
any idea? please...
your main view controller viewwillappear
call when modal view dismissed (or other reason view appear). implement call reloaddata
on table @ point, so:
- (void)viewwillappear:(bool)animated { [super viewwillappear:animated]; [self.tableview reloaddata]; }
Comments
Post a Comment