通过单击按钮开始 NSTextFieldCell 编辑

发布于 2025-01-01 21:46:35 字数 187 浏览 0 评论 0原文

我需要在单击按钮后开始 NSTextFieldCell 编辑(如果用户双击单元格,则行为相同)

我找到了一个函数 performClick ,它模拟用户通过光标单击。我的想法是调用双击模拟。这个功能存在吗?或者您可以建议其他解决方案吗?

谢谢

I need to start NSTextFieldCell editing after button clicked (the same behaviour if user double click on the cell)

I found a function performClick which simulates user clicking by cursor. My idea is to call a simulation of double clicking. Does this function exist?Or maybe you can suggest other solution?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2025-01-08 21:46:35
- (IBAction)editclicked:(id)sender{
    NSInteger col = [dreamTable columnWithIdentifier:@"data"];
    NSInteger row = [dreamTable selectedRow];
    [dreamTable editColumn:col row:row withEvent:NULL select:YES];
}

这是一个解决方案

- (IBAction)editclicked:(id)sender{
    NSInteger col = [dreamTable columnWithIdentifier:@"data"];
    NSInteger row = [dreamTable selectedRow];
    [dreamTable editColumn:col row:row withEvent:NULL select:YES];
}

This is a solution

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文