ios - UITableView and Navigation Controller -
i trying simple navigation controller controlled uitableview. whenever select 1 of rows supposed go next slide , animate there. whenever implement code, animation goes halfway, freezes, , disappears.
- (void)tableview:(uitableview *)tableview didselectrowatindexpath:(nsindexpath *)indexpath { description* desc=[[description alloc] init]; [tableview deselectrowatindexpath:indexpath animated:yes]; [self.navigationcontroller pushviewcontroller:desc animated:yes]; }
can help? in advance.
i don't know if same problem, similar happened me. problem backgroundcolor
of uiview
of pushed uiviewcontroller
clear, cause animation weird because can see pushing uiviewcontroller underneath.
setting backgroundcolor
on uiview
of pushed uiviewcontroller
(in case, in white) solved problem
Comments
Post a Comment