To run the example project, clone the repo, and run pod install
from the Example directory first.
All you need to do is drop iOSSideMainMenu files into your project.
- Swift3 or higher
- Xcode 8 or higher
- iOS 8.0 or higher
iOSSideMainMenu is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "iOSSideMainMenu"
The recommended approach for installating iOSSideMainMenu
is via the CocoaPods package manager, as it provides flexible dependency management and dead simple installation. For best results, it is recommended that you install via CocoaPods >= 0.28.0 using Git >= 1.8.0 installed via Homebrew.
Install CocoaPods if not already available:
$ [sudo] gem install cocoapods
$ pod setup
Change to the directory of your Xcode project:
$ cd /path/to/MyProject
$ touch Podfile // To make a file
$ pod init // Make a file called Podfile
$ edit Podfile
Edit your Podfile and add iOSSideMainMenu
:
platform :ios, '8.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'MyProject' do
pod 'iOSSideMainMenu'
end
Install into your Xcode project:
$ pod install
Open your project in Xcode from the .xcworkspace file (not the usual project file)
$ open MyProject.xcworkspace
Build and run the iOSSideMainMenu project in Xcode to see iOSSideMainMenu in action.
- Fork it!
- Create your feature branch: git checkout -b my-new-feature
- Commit your changes: git commit -am 'Add some feature'
- Push to the branch: git push origin my-new-feature
- Submit a pull request :D
- Juan Morillo - juanmorillios If you have some suggest please post me an hare
iOSSideMainMenu is available under the MIT license. See the LICENSE file for more info.