The sandbox is not in sync with the Podfile.lock. Run ‘pod install‘ or update your CocoaPods install

news/2024/7/20 20:48:47 标签: xcode, cocoapods, ios

The sandbox is not in sync with the Podfile.lock. Run ‘pod install’ or update your CocoaPods install解决方法

  1. 退出Xcode,删除Podfile.lock
  2. 重新pod install
  3. 重新打开Xcode

http://www.niftyadmin.cn/n/1152669.html

相关文章

Trie(字典树)

字典树的作用:它是利用单词的公共前缀来节约储存空间,因为单词的前缀相同就会公用前缀的节点。比如搜索提示就可以根据输入的前缀来提示可以构成的单词。 前缀树特点: ①:单词前缀相同共用节点。 ②:每个节点只存一个字…

nginx查看配置文件nginx.conf路径

当你执行 nginx -t 得时候,nginx会去测试你得配置文件得语法,并告诉你配置文件是否写得正确,同时也告诉了你配置文件得路径:# nginx -tnginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is oknginx: config…

pod install curl failed to verify the legitimacy of the server and therefore could not establish

pod install curl failed to verify the legitimacy of the server and therefore could not establish解决方法 //删除pods rm -rf Pods echo insecure >> ~/.curlrc //重新安装pods pod install --repo-update

标题与内容

1、一级标题 a、二级标题 (1)、三级标题 道德是对弱者的同情,真理只掌握在大炮的射程只能。 2、一级标题2 a、二级标题 (1)、三级标题 道德是对弱者的同情,真理只掌握在大炮的射程只能。转载于:https://www…

python之模块ftplib(FTP协议的客户端)

# -*- coding: utf-8 -*- #python 27 #xiaodeng #python之模块ftplib(FTP协议的客户端)#需求:快速进行ftp上传 ,下载,查询文件from ftplib import FTP ftp FTP() #设置变量timeout 30 port 21ftp.c…

ITMS-90683: Missing Purpose String in Info.plist的解决方法

ITMS-90683: Missing Purpose String in Info.plist的解决方法 ITMS-90683: Missing Purpose String in Info.plist - Your app’s code references one or more APIs that access sensitive user data. The app’s Info.plist file should contain a NSBluetoothPeripheralUs…

Centos系统备份与恢复

Centos系统备份与恢复 linux所有的东西都是文件,基于这一点,备份和还原还是比较简单方便的。习惯用三种命令:tar,dd,rsync。详细的用法可以man。 1、make a backup file #man tar #tar cvpzf backup.tgz / --exclude/…

swift设置UIButton字体大小

swift设置UIButton字体大小 mainView.button.titleLabel?.font UIFont(name: "PingFangSC-Medium", size: 30)