Spring 框架 StoryBoard 渲染错误
Spring framework StoryBoard render Error
我有一个项目在工作project.now我再次安装 pod
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift3'
不,我收到了这个错误。
“错误:IB Designables:无法为 AvailabilityViewController 呈现和更新自动布局状态,找不到合适的图像。确实发现:Spring.framework:'Spring.framework' 缺少必需的代码签名”
现在我的应用程序 running.but 我无法在情节提要中找到视图。
我试图从 Xcode 中删除所有派生数据并关闭自动管理 signing.but 没有任何效果。希望你能理解我的问题。提前致谢。
这是一个与新 XCode 和 CocoaPods 1.5 版相关的问题
您可以
- 将您的 CocoaPods 降级为 1。4.x
实施以下解决方法:(添加到您的 podfile 的末尾并执行 pod update
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end
更多信息:
官方 CocoaPods git 问题:
https://github.com/CocoaPods/CocoaPods/issues/7606#issuecomment-381279098
我有一个项目在工作project.now我再次安装 pod
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift3'
不,我收到了这个错误。
“错误:IB Designables:无法为 AvailabilityViewController 呈现和更新自动布局状态,找不到合适的图像。确实发现:Spring.framework:'Spring.framework' 缺少必需的代码签名”
现在我的应用程序 running.but 我无法在情节提要中找到视图。
我试图从 Xcode 中删除所有派生数据并关闭自动管理 signing.but 没有任何效果。希望你能理解我的问题。提前致谢。
这是一个与新 XCode 和 CocoaPods 1.5 版相关的问题
您可以
- 将您的 CocoaPods 降级为 1。4.x
实施以下解决方法:(添加到您的 podfile 的末尾并执行
pod update
post_install do |installer| installer.pods_project.build_configurations.each do |config| config.build_settings.delete('CODE_SIGNING_ALLOWED') config.build_settings.delete('CODE_SIGNING_REQUIRED') end end
更多信息: 官方 CocoaPods git 问题: https://github.com/CocoaPods/CocoaPods/issues/7606#issuecomment-381279098