SwiftSwipeView
SwiftSwipeView copied to clipboard
Is it possible to use Storyboards instead of .xib? And how?
Yeap! If you add view controllers to the main storyboard, and set their Storyboard IDs, you can replace the lines in the ContainerViewDelegate class that looks like this:
var AVc = AViewController(nibName: "AViewController", bundle: nil);
With something that looks like this:
var AVc = storyboard!.instantiateViewControllerWithIdentifier("YourID") as! UIViewController