PagingKit
PagingKit copied to clipboard
Without Storyboard
Hello can PagingKit be used without storyboard? I'm building everything programmatically currently.
Yes. PagingMenuViewController and PagingContentViewController are inherited from UIViewController. So you can use them like UIViewController. If you don't know how to add a child vc to the parent vc programmatically, please look up on the internet.
let contentViewController = PagingContentViewController()
let menuViewController = PagingMenuViewController()
addChild(contentViewController)
addChild(menuViewController)
// add view with Autolayout or Autoresizing