- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当访问 UITextView 作为符合 UITextInputTraits 的对象时,我遇到了奇怪的编译错误:
protocol MyEditingView:UITextInputTraits where Self: UIView {
}
extension UITextView:MyEditingView {
}
class SomeClass {
var editingView:MyEditingView = UITextView()
func someFunc() {
editingView.autocorrectionType = .no
}
}
“无法分配给属性:'self' 是不可变的”
但是如果属性在协议(protocol)中明确声明,则没有继承自 UITextInputTraits,编译成功。
protocol MyEditingView where Self: UIView {
var autocorrectionType: UITextAutocorrectionType { get set }
}
并且属性声明与 UITextInputTraits 中的相同。
swift 4.2,XCode 10.1
最佳答案
autocorrectionType 属性在 UITextInputTraits 中是可选,但是当您在 MyEditingView 中明确声明它时,它不再是可选属性。我尝试在 MyEditingView 中将其设置为可选属性,但出现了相同的编译错误。
关于swift - 无法分配来自 UITextInputTraits 的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55025894/
当访问 UITextView 作为符合 UITextInputTraits 的对象时,我遇到了奇怪的编译错误: protocol MyEditingView:UITextInputTraits whe
所以我正在开发一个 iOS 键盘扩展,我希望我的返回按钮文本根据 returnKeyType 进行更改,但是,这个 API 似乎无法在键盘扩展上正常工作。 我有一个带有一些 UITextField 的
我试图向某人解释 UITextAutocorrectionType 有 3 个选项,是、否和默认。他们问我default 是什么意思。我不知道。 The documentation不是很有帮助。有人有
今天最奇怪的错误: 2011-12-17 08:52:50.565 ShowLink[625:707] *** Terminating app due to uncaught exception 'N
我正在尝试为 Swift 3 中的自定义 UIButton 子类采用 UITextInputTraits。 我添加了 "Symbols" section of the documentation 中指
我想在使用键盘时更改其 UITextInputTraits... 我的理想代码看起来像这样: - (IBAction)nameTextDidChange:(UITextField *)sender {
我是一名优秀的程序员,十分优秀!