SwiftManRequirements:
iOS 8.0+
Xcode 8.1+
Swift 3.0+
FeaturesSwift extensions and utils classes
PreviewInstallationExportFrameworkrun buildFramework script
CarthageCarthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update $ brew install carthageTo integrate SwiftMan into your Xcode project using Carthage, specify it in your Cartfile:
github 'easyui/SwiftMan'Run carthage update to build the framework and drag the built SwiftMan.framework into your Xcode project.
CocoaPodsCocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapodsTo integrate SwiftMan into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' use_frameworks! target '<Your Target Name>' do pod 'SwiftMan' endThen, run the following command:
$ pod installhttps://github.com/easyui/SwiftMan