如何设置 NSMenuItem 操作的发送者?

发布于 2024-09-01 16:58:48 字数 81 浏览 5 评论 0原文

Apple 文档说传递给 NSMenuItem 操作的发送者可以设置为某个自定义对象,但我似乎不知道如何执行此操作。有没有我在文档中没有看到的方法?

The Apple documentation says that the sender passed to the NSMenuItem's action can be set to some custom object, but I can't seem to figure out how to do this. Is there a method I'm not seeing someplace in the documentation?

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

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

发布评论

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

评论(1

鸠书 2024-09-08 16:58:48

我不确定您指的是哪一份文档(链接会有所帮助)。

您可以使用 NSMenuItem-setRepresentedObject: 方法将任意对象与菜单项关联:

//assume "item" is an NSMenuItem object:

NSString* someObj = @"Some Arbitrary Object";

[item setRepresentedObject:someObj];
[item setAction:@selector(doSomething:)];

然后,当菜单项发送其操作消息时,您可以获得该对象:

- (IBAction)doSomething:(id)sender
{
    NSLog(@"The menu item's object is %@",[sender representedObject]);
}

I'm not sure what piece of documentation you're referring to (a link would help).

You can use the -setRepresentedObject: method of NSMenuItem to associate an arbitrary object with a menu item:

//assume "item" is an NSMenuItem object:

NSString* someObj = @"Some Arbitrary Object";

[item setRepresentedObject:someObj];
[item setAction:@selector(doSomething:)];

Then when the menu item sends its action message you can obtain the object:

- (IBAction)doSomething:(id)sender
{
    NSLog(@"The menu item's object is %@",[sender representedObject]);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文