gpt4 book ai didi

objective-c - 在 Mac OSX 中连接 socket - 困惑

转载 作者:行者123 更新时间:2023-12-03 17:40:46 25 4
gpt4 key购买 nike

我有 iOS 编程背景。现在我正在尝试在 Mac OSX 中编写一个应用程序。我正在尝试将界面文件 MainWindow.xib 中的按钮连接到 ViewController,就像我通常在 iOS 编程中所做的那样来划分方法。但是,我只能将按钮连接到 AppDelegate.h - 为什么会这样?我无法将按钮连接到任何其他文件,我尝试过 NSViewController、NSWindowController。我可以通过转储 AppDelegate.h 中的所有方法来继续,但如果可能的话,我想根据文件对方法进行逻辑分组。

在 Mac OSX 中执行此类操作的正确方法是什么?

提前致谢。

这是我的 AppDelegate

#import <Cocoa/Cocoa.h>

@class MainLoop;

@interface AppDelegate : NSObject <NSApplicationDelegate> {

}

@property (nonatomic, strong, readonly)IBOutlet NSWindow *window;
@property (nonatomic, strong, readonly)MainLoop *mainLoop;


@end

最佳答案

请按照以下步骤操作:Demo project here

  • Create a new class derived from NSWindowController. In image it is OutletCollection.

enter image description here

  • Create an Object, set its class to OutletCollection.

enter image description here

  • Make this object as delegate for window.

enter image description here

  • Now you can create outlets.

enter image description here

关于objective-c - 在 Mac OSX 中连接 socket - 困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15917252/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com