My development kit for iOS
- Requires iOS 9.0 or later
- Requires Automatic Reference Counting (ARC)
Install CocoaPods with the following command:
$ gem install cocoapods
Create a Podfile into your project folder:
$ touch Podfile
Add the following line to your Podfile
:
platform :ios, '8.0'
target 'TargetName' do
pod "ZXToolboxSwift"
end
Then, run the following command:
$ pod install
or
$ pod update
Install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
Create a Cartfile into your project folder:
$ touch Cartfile
Add the following line to your Cartfile
:
github "xinyzhao/ZXToolboxSwift"
Then, run carthage to build the framework
$ carthage update --platform iOS
Drag the built ZXToolboxSwift.framework into your Xcode project.
import ZXToolboxSwift
- ZXDashLineView
- ZXLocale
- ZXSemaphoreSwift
- ZXTableViewCellModel
- ZXTitleBarController
- CAGradientLayer+Direction
- DispatchQueue+Event
- UIView+Animation
- UIViewController+Alert
ZXToolboxSwift
is available under the MIT license. See the LICENSE
file for more info.