NSButton 位于 NSTextField 内

发布于 2024-10-27 13:28:26 字数 514 浏览 6 评论 0原文

我正在尝试创建一个 NSTextField,其右侧有一个按钮(类似于 NSSearchView),但我不知道如何让 NSTextField 的文本滚动而不进入 NSButton 下方。

到目前为止,这是我的代码:

rightButton = [[NSButton alloc] initWithFrame:rect];
[rightButton setTarget:self];
[[rightButton cell] setHighlightsBy:NSNullCellType];
[rightButton setImage:[NSImage imageNamed:@"rightButton"]];
[rightButton setAction:@selector(action:)];
[rightButton setBordered:NO];

有什么想法吗?

编辑:这是问题的屏幕截图。 错误的屏幕截图。

I'm trying to create a NSTextField with a button on its right side (similar to a NSSearchView), but I can't figure out how to have the NSTextField's text scroll without going under the NSButton.

Here is my code thus far:

rightButton = [[NSButton alloc] initWithFrame:rect];
[rightButton setTarget:self];
[[rightButton cell] setHighlightsBy:NSNullCellType];
[rightButton setImage:[NSImage imageNamed:@"rightButton"]];
[rightButton setAction:@selector(action:)];
[rightButton setBordered:NO];

Any thoughts?

EDIT: Here is a screenshot of the problem.
Screenshot of the bug.

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

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

发布评论

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

评论(1

我很OK 2024-11-03 13:28:26

我认为就是这样你正在寻找。基本上,您所做的就是调整框架以补偿您放置在字段内的按钮。

I think this is what you're looking for. Basically what you're doing is adjusting the frame to compensate for the button you put inside the field.

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