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

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -