ios6 - iOS UITableViewController with paging dynamically -
my question - how make uitableviewcontroller with paging?
for example, have send request gives me information count of science articles. on uitableviewcontroller present information in tableview static cells, , if want see information article should swipe left or right , animation transition between controller, see same controller information.
basically main complexity uitableviewcontroller, because if uiviewcontroller, can implement huge amount of solutions icarousel , many others, tableviewcontroller can't make same solutions.
happy if recommend solution.
uitableview think inherits uiscollview, can try saying
[tableview setpageenabled:yes]; if doesn't work, try getting subviews of table view
[tableview subviews]; and 1 of elements scroll view, read documentation sure allowed manipulate hirearchy of uitableview
if else fails, add gesture control tableview , put in vertical gestures , call method
scrolltorowatindexpath:atscrollposition:animated: as left gesture going back, don't have fluid animation scroll view gives.
props has valid solution this.
Comments
Post a Comment