自从更新到IOS 12以来,我最近收到此错误“无法呈现autoLayout状态,代理崩溃了”。以前的修复是将其放入我的pod文件中,直到IOS 12为止。现在,它实际上已经崩溃了自动布局,使其无法编辑任何内容。
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
我尝试了删除无效数据的整个修复过程。我当前的Cocoapod版本是
.gem/ruby/2.3.0/gems/cocoapods-1.5.3/lib/cocoapods.rb
到目前为止,此IOS 12错误是否有解决方案?