如何以编程方式启动 NSTextFieldCell 编辑(使其成为第一个Responder)
我有两个 NSTableView。双击tableview1
时,tableview1
的内容将被放置在tableview2
中。我想在 tableview2.
中编辑新单元格。尝试了以下方法。
- (void)editColumn:(NSInteger)columnIndex row:(NSInteger)rowIndex withEvent:(NSEvent *)theEvent select:(BOOL)flag
这不会使 tableview2
为第一响应者。光标不在新单元格中。我希望将光标放在新单元格中并开始编辑该单元格。请给我一些指示来完成此任务。提前致谢。
如何将光标移至 NSTableView 的单元格中?
I have two NSTableView
s. On double clicking on the tableview1
the contents of the tableview1
will be placed in tableview2
. I would like to edit the new cell in the tableview2.
Tried the following method.
- (void)editColumn:(NSInteger)columnIndex row:(NSInteger)rowIndex withEvent:(NSEvent *)theEvent select:(BOOL)flag
This does not make the tableview2
as firstResponder. The cursor is not in the new cell. I would like to have the cursor in the new cell and start editing the cell. Please give me some pointers to accomplish this. Thanks in advance.
How to bring the cursor in the cell of NSTableView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当编辑开始时,
fieldEditor
出现在图片中,这就是为什么无法设置firstResponder
的原因。实现了 tableView 的
textDidEndEditing
委托。它解决了这个问题。When the editing started ,
fieldEditor
comes into picture thats why not able to set thefirstResponder
.Implemented the
textDidEndEditing
delegate of the tableView. It solved the isssue.如果您使用 NSArrayController 来保存表的数据,则可以重写rearrangeObjects:
另一个优点是此方法似乎还可以将表向下滚动到新的位置。插入的行。
If you are using a
NSArrayController
to hold the data of your tables, you could overriderearrangeObjects:
An additional advantage is that this method also seems to scroll the table down to the newly inserted row.