界面生成器中的关键命令是什么
what are key command in interface Builder
在Interface builder的右侧栏上;当视图控制器有一个 "Key Commands" 面板时。
这是什么?
感谢和问候,
这是触发响应者操作的关键命令列表。
您可以在 UIResponder class 查看 Apple 文档,它是 "keyCommands" 属性:
https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIResponder_Class/index.html#//apple_ref/occ/instp/UIResponder/keyCommands
或者您可以通过一些教程了解如何使用此功能,例如:
http://www.danandcheryl.com/2014/04/how-and-why-to-implement-keyboard-shortcuts-in-ios-7
在Interface builder的右侧栏上;当视图控制器有一个 "Key Commands" 面板时。 这是什么?
感谢和问候,
这是触发响应者操作的关键命令列表。
您可以在 UIResponder class 查看 Apple 文档,它是 "keyCommands" 属性: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIResponder_Class/index.html#//apple_ref/occ/instp/UIResponder/keyCommands
或者您可以通过一些教程了解如何使用此功能,例如: http://www.danandcheryl.com/2014/04/how-and-why-to-implement-keyboard-shortcuts-in-ios-7