gpt4 book ai didi

ios - 类型 'UITextDocumentProxy.Protocol' 的值在强制转换方面不符合 'UIKeyInput'

转载 作者:行者123 更新时间:2023-11-30 11:26:15 28 4
gpt4 key购买 nike

我有以下代码:

let button = sender as! UIButton
let title = button.title(for: .normal)
(UITextDocumentProxy as UIKeyInput).insertText(title!)

但是 Xcode 9.4 (Swift 4) 提示:

Value of type 'UITextDocumentProxy.Protocol' does not conform to 'UIKeyInput' in coercion

最佳答案

您将一个协议(protocol)转换为另一个协议(protocol)并调用它的方法吗?

您通常想要使用某个实例,并且可能会转换该实例...

例如

if let myObject = anotherObjectIGot as? UIKeyInput { ... }

协议(protocol)是对象的一种类型。它本身不是一个物体。您需要其中之一:D 一个真实的实例

关于ios - 类型 'UITextDocumentProxy.Protocol' 的值在强制转换方面不符合 'UIKeyInput',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50710265/

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