問(wèn)題:iOS Framework not found Pods_xxx
解決:
Targets->Build Phases->Link Binary With Libraries 刪除 Framework not found Pods_xxx
問(wèn)題:
building for iOS Simulator, but linking in object file built for iOS, file 'xxx/Pods/WechatOpenSDK/WeChatSDK1.8.5/libWeChatSDK.a' for architecture arm64
第一步:

d
第二步:
在podfile添加,以免pod install時(shí)覆蓋需要在pod工程中的設(shè)置
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
end
參考:
報(bào)錯(cuò)building for iOS Simulator, but linking in object file built for iOShttps://blog.csdn.net/u011224726/article/details/124453819