是否可以在UITextView
上检测iOS上的Shift + Enter键组合?
答案 0 :(得分:1)
使用Swift,您可以使用以下内容拦截UIResponder
子类中的组合 Shift + Enter :
override var keyCommands: [UIKeyCommand]? {
get {
return [UIKeyCommand(input: "\r", modifierFlags: .shift , action: #selector(handleShiftEnter(command:)))]
}
}
func handleShiftEnter(command: UIKeyCommand) {
print("Combo pressed! Default action intercepted!")
}