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