在 Objective-c Cocoa 中添加运行时按钮控制

发布于 2024-11-05 17:41:31 字数 526 浏览 1 评论 0原文

如果我将这些行放入 xxxAppDelegate.m 文件中,它就可以正常工作。但我需要在另一个模块下使用它,例如在 main.m 等中。编译器生成一个错误,指出窗口未定义。 “window”是在xxxAppDelegate模块中定义的,如何在xxxAppDelegate.m旁边的其他模块中引用它

    NSView *superview = [window contentView];
    NSButton *button = [ [ NSButton alloc ] initWithFrame: NSMakeRect( 10.0, 10.0, 200.0, 100.0 ) ];
    [ button setBezelStyle:NSRoundedBezelStyle];
    [ button setTitle: @"Click" ];
    [superview addSubview:button];
    [button setTarget:self];
    [ button setAction:@selector(doSomething:)];

If I put these lines in the xxxAppDelegate.m file, it works fine. But I need to use it under another module such as in main.m etc. The compiler generated an error stated that window is undefined. "window" is defined in the xxxAppDelegate modues, how do you reference it in another modules beside xxxAppDelegate.m

    NSView *superview = [window contentView];
    NSButton *button = [ [ NSButton alloc ] initWithFrame: NSMakeRect( 10.0, 10.0, 200.0, 100.0 ) ];
    [ button setBezelStyle:NSRoundedBezelStyle];
    [ button setTitle: @"Click" ];
    [superview addSubview:button];
    [button setTarget:self];
    [ button setAction:@selector(doSomething:)];

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

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

发布评论

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

评论(2

独行侠 2024-11-12 17:41:31

Cocoa 喜欢保持模块化。 window 不存在于委托的上下文中,因为它是另一个类。

如果应用程序委托中的 window 不存在,则为它创建一个属性:

.h

@property(readonly)NSWindow * window;

.m

@synthesize window;

然后:

((YourDelegateClass *)[NSApp delegate]).window 应该可以工作。

Cocoa likes to keep things modular. window doesn't exist in the context of the delegate, because it is another class.

make a property for window in your app delegate if it doesn't exist:

.h

@property(readonly)NSWindow * window;

.m

@synthesize window;

then:

((YourDelegateClass *)[NSApp delegate]).window should work.

一口甜 2024-11-12 17:41:31

您可以将该代码粘贴到任何需要的地方(即,将其放在 main 中)。除非,是否有某种原因需要在委托中声明它?

You could just paste that code wherever you need it (IE, put it in main). Unless, is there some reason you need it declared in the delegate?

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