查找三方名称: pod search 名称 创建一个Podfile文件: pod init将查找的三方命令粘贴在Podfile文件里如下:# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
use_frameworks!
target 'IOS8SwiftCocoapodsTutorial'do
pod 'FontBlaster', '1.0.8'end
target 'IOS8SwiftCocoapodsTutorialTests'doend下载三方:pod install --verbose --no-repo-update