iOS-mapbox-Cocoapods安装
2021-02-01 本文已影响0人
CoderCurtis
官网说的挺详细了
这里记录下个人使用Cocoapods安装mapbox时遇到的一个问题:
在官网中title为Configure your secret token部分
image.png
配置.netrc时遇到了一些问题,尝试了多次才解决
you will need to store it in a .netrc file in your home directory (not your project folder). 根据该描述,就是需要将.netrc文件创建在mac账户的根目录下
- 打开终端
使用touch命令创建.netrc
touch .netrc
- 打开.netrc文件
使用命令open
open .netrc
- 编辑.netrc
依据installation操作获取到secret api token替换掉占位文字
-
保存.netrc内容
-
项目podfile中添加 pod 'Mapbox-iOS-SDK'
-
执行pod install
效果图:
image.png