Create a basic application with single view application template with swift as language

Add SWRevealViewController.h and SWRevealViewController.m

then click on Create Bridging Header button

http://i.stack.imgur.com/nqQZM.png

and add

#import "SWRevealViewController.h"

on the Bridging header

Then select viewController on storyboard and change class to SWRevealViewController

http://i.stack.imgur.com/vP10G.png

Then rename the viewController on files to MainViewController and add new ViewController with RightViewController name

http://i.stack.imgur.com/4wiPd.png

then we add two segues from SWRevealViewController to MainViewController and from SWRevealViewController to RightViewController, then we need to select the first (from SWRevealViewController to MainViewController) and edit properties

on identifier set sw_front on Class set SWRevealViewControllerSegueSetController

http://i.stack.imgur.com/019Uz.png

after this we need to do the same with the segue (from SWRevealViewController to RightViewController)

on identifier set sw_rear on Class set SWRevealViewControllerSegueSetController

http://i.stack.imgur.com/lBSc6.png

then on MainViewController add this line on viewDidLoad method

self.view.addGestureRecognizer(self.revealViewController().panGestureRecognizer());

And this is all, you have a basic app with SWRevealViewController integrated, you can swipe to right to show RightViewController as lateral menu