Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 630 Bytes

File metadata and controls

26 lines (17 loc) · 630 Bytes

Interactive

InteractiveViewController for iOS, written in swift

Demo on Appetize.io

Preview

usage

  • Just inherit your UIViewController from InteractiveViewController
class ExampleViewController: InteractiveViewController {
        }
  • Use showInteractive() method to show
if let vc = storyboard?.instantiateViewController(withIdentifier: "ExampleViewController") as? InteractiveViewController {
            vc.showInteractive()
        }

That's it, enjoy.