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

前端之家收集整理的这篇文章主要介绍了ios – 无法呈现和更新自动布局状态Stripe.Framework前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不知道发生了什么,但突然间我的 xcode停止渲染自动布局

enter image description here

这是我从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

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

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

enter image description here

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

enter image description here

猜你在找的Xcode相关文章