美文网首页
Swift(十三):Cocoapod - Podfile内容

Swift(十三):Cocoapod - Podfile内容

作者: IMSong | 来源:发表于2016-08-17 11:33 被阅读32次
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'

  target '工程名字' do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for swift-AFNetworking

  target '工程名字Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target '工程名字UITests' do
    inherit! :search_paths
    # Pods for testing
  end

pod 'AFNetworking'
pod 'SDWebImage'
#自动布局
pod 'SnapKit'
pod 'SVProgressHUD'


end

相关文章

网友评论

      本文标题:Swift(十三):Cocoapod - Podfile内容

      本文链接:https://www.haomeiwen.com/subject/rgsmsttx.html