iOS-mapbox-Cocoapods安装

官网说的挺详细了

这里记录下个人使用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账户的根目录下

  1. 打开终端

使用touch命令创建.netrc

touch .netrc
  1. 打开.netrc文件

使用命令open

open .netrc
  1. 编辑.netrc

依据installation操作获取到secret api token替换掉占位文字

image.png

  1. 保存.netrc内容

  2. 项目podfile中添加 pod 'Mapbox-iOS-SDK'

  3. 执行pod install

效果图:


image.png

你可能感兴趣的:(iOS-mapbox-Cocoapods安装)