M1模拟器编译不通过

XCode12.4已解决该问题。不需要修改。

第1步:
Build Setting中在Excluded Architectures对模拟器添加arm64
M1模拟器编译不通过_第1张图片

第2步:
Podfile文件中添加以下代码,然后pod install

  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

M1模拟器编译不通过_第2张图片

第3步:
Clean工程,重新编译即可。

你可能感兴趣的:(ios)