Make some iOS 3rdparty libraries support Carthage
Make some iOS 3rdparty libraries support Carthage
Carthage 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 carthage
To integrate MHObjCKit into your Xcode project using Carthage, specify it in your Cartfile
:
github "MakeHui/MHObjCKit"
Run carthage update
to build the framework and drag the built MHObjCKit.framework
into your Xcode project.
#import <MHObjCKit/MHObjCKit.h>
MHObjCKit is released under the MIT license. See LICENSE for details.