gpt4 book ai didi

ios - 错误 IOS 10 - 无法从 https ://mesu. apple.com/assets/for asset type com.apple.MobileAsset.TextInput.SpellChecker 复制 Assets 信息

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:11:33 26 4
gpt4 key购买 nike

我有一组 UITextfield 供用户注册。我的应用程序构建成功,但每当我尝试在电子邮件文本字段中输入 @ 时,它都会显示以下消息,并且无法注册用户,无法点击注册按钮。有谁知道发生了什么事?我该如何解决这个问题?

2017-04-14 15:41:26.949699-0400 Oja[72824:36708711] 0x6080003484b0 Copy matching assets reply: XPC_TYPE_DICTIONARY  <dictionary: 0x6080003484b0> { count = 1, transaction: 0, voucher = 0x0, contents =
"Result" => <int64: 0x608000222e40>: 29
}
2017-04-14 15:41:26.951188-0400 Oja[72824:36708711] 0x600000150e30 Daemon configuration query reply: XPC_TYPE_DICTIONARY <dictionary: 0x600000150e30> { count = 2, transaction: 0, voucher = 0x0, contents =
"Dictionary" => <dictionary: 0x600000345800> { count = 1, transaction: 0, voucher = 0x0, contents =
"ServerURL" => <dictionary: 0x600000344db0> { count = 3, transaction: 0, voucher = 0x0, contents =
"com.apple.CFURL.magic" => <uuid: 0x600000043000> C3853DCC-9776-4114-B6C1-FD9F51944A6D
"com.apple.CFURL.string" => <string: 0x6000000553c0> { length = 30, contents = "https://mesu.apple.com/assets/" }
"com.apple.CFURL.base" => <null: 0x114b17f40>: null-object
}
}
"Result" => <int64: 0x600000037360>: 0
}
2017-04-14 15:41:26.951649-0400 Oja[72824:36708711] [MobileAssetError:29] Unable to copy asset information from https://mesu.apple.com/assets/ for asset type com.apple.MobileAsset.TextInput.SpellChecker

最佳答案

我以编程方式解决了这个问题。我加了

tf.autocorrectionType = .no 

停止拼写检查。

 let emailTextField: UITextField = {
let tf = UITextField()
tf.placeholder = "Email Address"
tf.translatesAutoresizingMaskIntoConstraints = false
tf.addTarget(self, action: #selector(handleTextInputchange), for: .editingChanged)
tf.autocorrectionType = .no
return tf
}()

关于ios - 错误 IOS 10 - 无法从 https ://mesu. apple.com/assets/for asset type com.apple.MobileAsset.TextInput.SpellChecker 复制 Assets 信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43419437/

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