升级Xcode15,iOS17后问题解决

1、Could not build module ‘WebKit’ 报错

解决方案:

编辑文件 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebsiteDataStore.h

将里面的 170000 修改成 180000。

因为该文件是锁定状态,直接修改不了,需拷贝出来修改完成之后,再去替换该文件。

2、Assertion failed

报错信息:

Assertion failed: (false && “compact unwind compressed function offset doesn’t fit in 24 bits”), function operator(), file Layout.cpp,

解决方案:

Other Link Flags 添加 -ld64

你可能感兴趣的:(APP开发,ios,xcode)