繁体   English   中英

RxSwift - Playground 执行失败:无法查找符号

[英]RxSwift - Playground execution failed: Couldn't lookup symbols

我创建了一个新项目并使用 pods 来安装RxSwift 然后我创建了一个游乐场并编写了以下代码:

import UIKit
import RxSwift
import PlaygroundSupport

var name = "hello"
let names = Variable(["Good"])  

但控制台显示此错误:

Playground 执行失败:

错误:无法查找符号:__T07RxSwift8VariableCACyxGxcfC
__T07RxSwift8VariableCMa

Podfile试试这个:

platform :ios, '11.0'

target 'RxSwiftPlayground' do
  use_frameworks!

  # Pods for RxSwiftPlayground
  pod 'RxSwift', '~> 4.0'
end

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

    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
        end
    end
end

或者

  1. 删除“import RxSwift”行
  2. 清洁 (Cmd + Shift + K)
  3. 构建(有错误)
  4. 放回“导入 RxSwift”

来自https://github.com/ReactiveX/RxSwift/issues/1660

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM