NSUndoManager 是否可以在 iPhone 上运行而无需摇动手势?
我有一个应用程序,除了撤消之外,还可以使用摇动手势执行其他操作。我想使用 NSUndoManager ,所有示例和操作方法都说我必须将以下行放入我的 applicationDidFinishLaunching 方法中。
application.applicationSupportsShakeToEdit = YES;
是否可以使用 NSUndoManager 而不支持摇动撤消手势?
I have an app that uses the shake gesture for something else besides undo. I want to use NSUndoManager and all the examples and how-tos say I have to put the following line in my applicationDidFinishLaunching method.
application.applicationSupportsShakeToEdit = YES;
Is it possible to use NSUndoManager without supporting the shake to undo gesture?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然。创建一个撤消按钮,然后:
Sure. Create an Undo button, then: