告诉iOS程序员一个好消息:TouchVG 已加到CocoaPods!
在iOS程序的Podfile中加上下面一句就行,不再需要Git子模块,不再需要单独下载TouchVGCore等模块了。
pod 'TouchVG', '~> 1.1.10'
一个综合应用例子:
platform :ios, '6.0'
xcodeproj 'ios/tests/TestView/TestView.xcodeproj'
target "TestView" do
pod 'TouchVG', '~> 1.1.10'
pod 'DemoCmds', :podspec => 'ios/podspec/DemoCmds.podspec'
target "TestView-SVG" do
pod 'SVGKit', :git => 'https://github.com/SVGKit/SVGKit.git'
end
end
时间: 2024-10-26 16:29:05