iOS编程Podfile的写法

OC
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
target 'MasonryUsage' do
pod 'Masonry', '1.1.0'
end
Swift
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

target 'Examination_Swift' do
pod 'AFNetworking'
pod 'FSCalendar'
pod 'FMDB'
pod 'MJRefresh'
pod 'DBCamera'
pod 'IQKeyboardManager'
pod 'iOSDFULibrary'
pod 'KVOController'
pod 'UMengAnalytics-NO-IDFA'
pod 'MJExtension'
pod 'PNChart'
pod 'YTKNetwork'
pod 'Masonry'
end

你可能感兴趣的:(iOS编程Podfile的写法)