Basically, I am trying to implement the control segment / tableview, as in Mailbox (see it around 2:00: http://www.youtube.com/watch?v=FG-h8pDXfoE&feature=youtu.be&t=2m )
I am using Core Data in one UITableViewControllerconnected to UITableView.
When the user switches UISegmentedControl, it TableViewreloads with a different set NSPredicateand UITableViewRowAnimationRight/Leftit looks like this different view of the table slides and replaces the old one.
As the number of cells increases, the performance of this design decreases sharply, and it can also look much better.
I see several different ways around this, but I decided that I would ask you guys to indicate that some pointers will direct me in the right direction:
What is the best way to have a segmented control to switch multiple table views? Should these table views connect to the same data source / delegate?
source
share