在我的 Swift 包中使用时没有这样的模块 'Combine'
No such module 'Combine' when used in my Swift Package
当我创建一个 swift 包时,然后我使用简单的行:
import Combine
我收到以下错误:
No such module 'Combine'
我已将方案切换为 Any iOS Device
我也在Package.swift
文件里设置了平台
import PackageDescription
let package = Package(
name: "AsyncImageView",
platforms: [.iOS(.v8)],
products: [
它仍然不接受Combine。
Combine 仅适用于 iOS 13 and/or macOS 10.15 或更高版本。您需要保证该条件的编译器和链接器。更改您的包裹以包含
platforms: [
.iOS(.v13), .macOS(.v10_15)
],
现在构建包方案,然后构建项目方案,一切就绪。
当我创建一个 swift 包时,然后我使用简单的行:
import Combine
我收到以下错误:
No such module 'Combine'
我已将方案切换为 Any iOS Device
我也在Package.swift
文件里设置了平台
import PackageDescription
let package = Package(
name: "AsyncImageView",
platforms: [.iOS(.v8)],
products: [
它仍然不接受Combine。
Combine 仅适用于 iOS 13 and/or macOS 10.15 或更高版本。您需要保证该条件的编译器和链接器。更改您的包裹以包含
platforms: [
.iOS(.v13), .macOS(.v10_15)
],
现在构建包方案,然后构建项目方案,一切就绪。