KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
LFSideViewController
★ 11
Open GitHub ↗
iOS side menu
Download README (.md)
Explore Similar Repositories
ClearPassAndELK
:
ClearPass and Logstash Configuration Files
twitchcord
:
Twitch emote "plugin" for discord
figaro-elixir
:
Environmental variables manager based on Figaro for Elixir projects
goto-github-repo
:
Chrome Omnibox extension to access github repo
Win-Lock-Screen
:
:lock: Enable / Disable the Lock Screen for Windows 8, 8.1 & 10.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
LFSideViewController
?
Download (.md)
# LFSideViewController  [](http://cocoadocs.org/docsets/LFSideViewController) [](http://cocoadocs.org/docsets/LFSideViewController) [](https://github.com/Carthage/Carthage) iOS side menu <img src="https://raw.githubusercontent.com/luisfcofv/LFSideViewController/master/LFSideViewController.gif?" alt="Demo" width="320" height="568" /> #### Requirements * Xcode 6 * iOS 9 ## Installation The best and easiest way is to use [CocoaPods](http://cocoapods.org). pod 'LFSideViewController', '~> 2.0.0' #### Usage ```swift import UIKit class RootViewController: LFSideViewController { override func viewDidLoad() { super.viewDidLoad() let storyboard = UIStoryboard(name: "Main", bundle: nil) self.contentViewController = storyboard.instantiateViewController(withIdentifier: "NavigationViewController") self.rightViewController = storyboard.instantiateViewController(withIdentifier: "RightViewController") self.leftViewController = storyboard.instantiateViewController(withIdentifier: "LeftViewController") if let sideViewController = self.sideViewController() { sideViewController.delegate = self } } } ``` Check out the example project for more details. ## License LFSideViewController is licensed under the [MIT License](LICENSE).