Xcode14.3打包问题失败 sync error: some files could not be transferred (code 23) at ...
Xcode搜索
Pods-[你的工程名]-frameworks
2.在上面的文件中查找
source="$(readlink "${source}")"
替换为
source="$(readlink -f "${source}")"
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink -f "${source}")"
# source="$(readlink "${source}")"
fi