标签: ios xcode frameworks
我发现,如果正常的第三方框架未在项目设置中设置为“嵌入式”,则该项目将无法构建(错误:未加载图像)。 但是,这一次,我将这个第三方框架重建为XCFramework,并且XCFramework的“不嵌入”设置一切正常。
我应该嵌入XCFramework吗?
答案 0 :(得分:1)
选择"Embed & Sign"以避免image not found在包含任何第三方XCFrameworks的物理设备上运行应用程序时崩溃。
"Embed & Sign"
image not found
可以从Targets -> General -> Frameworks, Libraries and Embedded Content下的链接xcframework中选择此选项。
Targets -> General -> Frameworks, Libraries and Embedded Content
但是带有xcframework的应用程序在Do Not Embed,Embed & Sign或Embed Without Signing中可用的任何选项下都可以在模拟器中正常工作。
Do Not Embed
Embed & Sign
Embed Without Signing