一般创建项目都需要用到的podfile第三方
platform :ios, '11.0'
#platform :ios, '10.0'
# 忽略pod警告
inhibit_all_warnings!
target 'Project' do
use_frameworks!
pod 'AFNetworking' # 网络请求
pod 'YYModel' # YYModel
pod 'YYWebImage' # YYWebImage
pod 'MJRefresh' # 刷新
pod 'SDWebImage' # 网络图片
pod 'SDCycleScrollView' # 轮播图
pod 'IQKeyboardManager' # 智能键盘
pod 'Masonry' # 自动布局
pod 'QMUIKit' # QMUI
pod 'Bugly' # 腾讯的bug收集
pod 'BRPickerView' # 时间选择器
pod 'HMSegmentedControl' # 选择控制器
pod 'TZImagePickerController' # 图片选择器
pod 'TOWebViewController' # web
pod 'AMap3DMap-NO-IDFA' # 高德地图SDK
pod 'AMapSearch-NO-IDFA' # 高德地图SDK搜索功能
pod 'AMapLocation-NO-IDFA' # 高德地图SDK定位功能
pod 'AMapNavi-NO-IDFA' # 高德地图SDK导航功能 (包含AMap3DMap
end
网友评论