xcode - iOS - How to reinitialize tableview cells -
i setup uitableviewcontroller in app, data changes 5 seconds after initial layout.
how can reinitialize tableview once data loaded?
essentially, need table view stripped down , start over. it's necessary following function looped on again:
- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath i suspect it's easy i'm not seeing...
call reloaddata on tableview. in uitableviewcontroller instance or subclass call
[self.tableview reloaddata];
Comments
Post a Comment