ios – 无法呈现和更新自动布局状态Stripe.Framework

我不知道发生了什么,但突然间我的
xcode停止渲染自动布局
《ios – 无法呈现和更新自动布局状态Stripe.Framework》

这是我从xcode获得的错误的图片.

编辑:

我的解决方案是运行命令

pod install 

最佳答案 这对我有用

https://github.com/evgenyneu/Cosmos/issues/105

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'XYZ' do

use_frameworks!

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

pod 'Alamofire'
pod 'Stripe'
/* etc ... */
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for Gozem Provider
end

你可以安装或更新pod

– – – – – – – – – – – – – – – 要么 – – – – – – – – – – ——————-

如果您的项目选择自动管理签名而不是删除它

《ios – 无法呈现和更新自动布局状态Stripe.Framework》

使它像你可以选择无,否则你可以使用你的当前证书比清洁项目和再次建立

《ios – 无法呈现和更新自动布局状态Stripe.Framework》

点赞