Podfile

作者: bianruifeng | 来源:发表于2020-08-17 17:30 被阅读0次

platform :ios, '8.0'
use_frameworks!
target 'UniversalApp' do
pod 'MJRefresh'
pod 'AFNetworking', '~> 3.0'
pod 'YYKit'
pod 'MBProgressHUD', '~> 1.0.0'

pod 'Masonry', '~> 1.1.0'

pod 'SnapKit'
pod 'SnapKitExtend' #补充SnapKit 缺乏对Views数组的支持
pod 'NIMSDK', '~> 3.4.1'

pod 'NIMSDK', '~> 3.7.0'

高德地图

pod 'AMap2DMap'
pod 'AMapSearch'
pod 'AMapLocation'
pod 'XRCarouselView'
pod 'Toast'
pod 'MJExtension'
pod 'MGSwipeTableCell' #TableCell侧滑效果
pod 'SVProgressHUD', '~> 2.2.5'

表单

pod 'UFKit'

pod 'SDCycleScrollView'
end

相关文章

  • pod命令行操作

    首先:cd 项目touch Podfile一个文件vim Podfile进入Podfile文件在Podfile文件...

  • (四)Podfile vs. Podfile.lock

    下面是 Podfile 与 Podfile.lock 两个文件的对比: Podfile: Podfile.lock:

  • cocoapods 使用

    1 cd 空格 路径 2 touch Podfile 编辑 Podfile文件 1)输入 vim Podfile,...

  • CocoaPods的Podfile文件编写

    一、Podfile文件? 二、Podfile语法参考 Podfile Syntax Reference官网 1)永...

  • git 代码合并冲突

    Auto-merging Podfile.lock podfile.lock合并冲突 podfile.lock 该...

  • Flutter 项目升级报错处理

    1、flutter Warning: Podfile is out of dateWarning: Podfile...

  • Pod 新建项目

    1,打开命令行 cd 你的项目目录 2,新建Podfile touch Podfile 3, 编辑Podfile ...

  • cocoapods-prefer解析

    hook cocoapods的类 podfile 在podfile.rb文件实现在podfile调用的函数,传递参...

  • Podfile 库版本运算符

    一个简单的podfile: 一个更简单的podfile: 一个更更简单的podfile: 一个复杂的podfile...

  • Podfile

    什么是 Podfile Podfile是一个规范,用于描述一个或多个Xcode项目的目标依赖关系。 该文件应该简单...

网友评论

    本文标题:Podfile

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