Horizontally slidable paging viewController with tab menu
- Horizontally scrolling a number of viewControllers.
- Selectable a viewController as touch on tapBar menu.
- Underline of menu will automatically move when user scroll viewControllers.
- Support changing device orientation.
let pageInfo = [["first": FirstViewController()],
["second": SecondViewController()],
["third": ThirdViewController()]]
let viewController = SlidingPageTabViewController(pageInfo)
- Make a array that has element of dictionary.
- Key of the dictionary is String type and it will shown as TabMenu's name on output screen.
- Value of the dictionary is UIViewController type.
- Make SlidingPageTabViewController has the array (be made on prev step) as parameter.