ios - Modifying SwipeViewController Pod to run in a ContainerView -
so im using pod 'swipeviewcontroller' ( https://github.com/fortmarek/swipeviewcontroller ) gives me effect want problem runs main navigation controller , want work in container view because want use social app in profile menu twitter "my tweets", "likes", "repost"... so example need this... https://camo.githubusercontent.com/f4eb2a8ba0a11e672d02a1ef600e62b5272a7843/687474703a2f2f696d6775722e636f6d2f5344496b6634622e676966 to work in here: so explanation, make pod work need add line of code appdelegate let pagecontroller = uipageviewcontroller(transitionstyle: .scroll, navigationorientation: .horizontal, options: nil) let navigationcontroller = yourviewcontrollername(rootviewcontroller: pagecontroller) self.window?.rootviewcontroller = navigationcontroller self.window?.makekeyandvisible() wich creates new window swipecontroller, need way make work in view controller. i did similar last night using tutorial here: https://co...