My question is - How to make UITableViewController
with paging?
For example, I have send a request which gives me information about the count of science articles. On UITableViewController
I present all information in tableView
with static cells, and if I want to see information about another article I should just swipe left or right and then with some animation like transition between controller, I will see same controller with another information.
Basically the main complexity is UITableViewController
, because if it is UIVIewController
, I can implement a huge amount of solutions like iCarousel
and many others, but with TableViewController
I can't make the same solutions.
I would be happy if you recommend some solution.