Latest | 0.2 |
---|---|
Homepage | https://github.com/codytwinton/SwiftyVector |
License | MIT |
Platforms | ios 8.0, tvos 9.0, requires ARC |
Frameworks | UIKit |
Authors |
SwiftyVector allows easy use of Vector graphics throughout your application
Features
- [x] Cocoapods Support
- [x] Carthage Support
- [ ] README Documentation
- [ ] SVG Support
- [ ] PDF Icon Support
Requirements
- iOS 8.0+ | tvOS 9.0+
- Xcode 8
- Swift 3
Installation
CocoaPods
You can use CocoaPods to install SwiftyVector
by adding it to your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '8.0'
def shared_pods
pod 'SwiftyVector', '~> 1.0'
end
target 'MyApp' do
shared_pods
end
target 'MyAppTests' do
shared_pods
end
To get the full benefits import SwiftyVector
wherever you import UIKit
import UIKit
import SwiftyVector
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 SwiftyVector into your Xcode project using Carthage, specify it in your Cartfile
:
github "codytwinton/SwiftyVector"
Run carthage update
to build the framework and drag the built SwiftyVector.framework
into your Xcode project.
Manually
This is discouraged, but allowed. :D
- Download and drop the
Source
folder in your project. - Congratulations!
Usage of SwiftyVector
Simply add a new vector image:
import SwiftyVector
//TODO: - Fill in Documentation
Contribute
We would love for you to contribute to SwiftyVector, check the LICENSE
file for more info. Pull Requests welcome!
Resources
Meta
- Cody Winton – @codytwinton
- Distributed under the MIT license. See LICENSE for more information.
- Inspired by ViperMcFlurry
- README edited with StackEdit
Latest podspec
{ "name": "SwiftyVector", "version": "0.2", "license": { "type": "MIT", "file": "LICENSE" }, "summary": "Swifty Interaction with Vector Images", "homepage": "https://github.com/codytwinton/SwiftyVector", "source": { "git": "https://github.com/codytwinton/SwiftyVector.git", "tag": "0.2" }, "source_files": "Sources/*.swift", "platforms": { "ios": "8.0", "tvos": "9.0" }, "frameworks": "UIKit", "requires_arc": true, "social_media_url": "http://twitter.com/codytwinton", "authors": { "Cody Winton": "[email protected]" }, "pushed_with_swift_version": "3.0" }
Wed, 22 Feb 2017 13:20:06 +0000