gpt4 book ai didi

swift - 创建自己的依赖 RxSwift 的库还需要导入 RxSwift 吗?

转载 作者:搜寻专家 更新时间:2023-10-31 22:18:42 26 4
gpt4 key购买 nike

我尝试使用 RxSwift 作为依赖项创建一个名为 MyLib 的库,它使用 cocoapod 命令 pod lib create。但是,以下代码不起作用。

import UIKit
import MyLib

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
// compile error: Use of unresolved identifier 'Observable'
Observable.just("")
}

}

它只有在我添加 import RxSwift 之后才有效

我只想导入 MyLib,有什么想法吗?

谢谢!

最佳答案

Observable 不是您的类,因此对于 RxSwift 开发人员,建议使用此导入。

但是如果你真的想尝试在你的库中为 Observable 使用类型别名?

例如:public typealias Observable = RxSwift.Observable

关于swift - 创建自己的依赖 RxSwift 的库还需要导入 RxSwift 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46822719/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com