gpt4 book ai didi

ios - "fatal error: unavailable function can' 不被调用”

转载 作者:行者123 更新时间:2023-11-30 14:05:04 25 4
gpt4 key购买 nike

所以我刚刚下载了 Xcode 7 GM,然后弹出了这个错误:

fatal error: unavailable function can't be called: file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.59/src/swift/stdlib/public/core/RangeReplaceableCollectionType.swift, line 329

关于如何解决这个问题有什么想法吗?

最佳答案

事实证明,我有一个以 extend 函数作为要求的协议(protocol)。

public protocol Appendable: Initiable, SequenceType
{
mutating func insert(_: Generator.Element)
mutating func append(_: Generator.Element)
mutating func extend<S: SequenceType where S.Generator.Element == Generator.Element>(_: S)
}

现在 extend 已重命名为 appendContentsOf,但是当我的协议(protocol)需要它时,Xcode 保持沉默(一个错误)。每当我在一致类型上调用 extend 时(在我的例子中,ArrayDictionarySet),而不是告诉我extend 已重命名,它只是通过使用 Appendable 以及 extend 保证的函数解决了问题。猜猜谁提供了实现。

没错。

PS:我在执行所有这些操作之前运行了迁移器,它应该已经解决了这个问题,但是呃。

关于ios - "fatal error: unavailable function can' 不被调用”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32535746/

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