NSWindowController showWindow 在其他 Mac 上导致问题
我正在对我的新 Mac 应用程序进行 Beta 测试,该应用程序在我的两台 MacBook Pro 和另一台 Beta 测试人员的 iMac 上运行良好。但对于我的另外两个 Bet…
NSWindowController 的 showWindow 内存泄漏:
我已经为以下泄漏而苦苦挣扎了一段时间。我通过 Instruments 将其范围缩小到以下代码块: - (NewMessageWindowController *)showNewMessageWindowWith…
NSViewController 或 NSWindowController 来管理笔尖
就良好实践和资源使用(内存等)而言,如果任一方法满足我的要求,那么使用 NSViewController 或 NSWindowController 哪种方法是更好的方法。从另一个…
如何访问另一个xib中属于MyDocument的NSArray实例?
在我的文档应用程序中,我对 NSArrayController 进行了子类化,我在 MyDocument.xib 中引用了它,将其内容绑定到 File's Owner.entries。 Entry 是一…
对子类 NSWindowController 的引用返回其文档 - 这是正确的吗?
我是基于文档的应用程序的新手,因此我可能错过了一些基本的东西。我编写了一个基于文档的应用程序,它使用子类 NSWindowController 作为接口,使用子…
NSWindow setFrame | NSWindow设置屏幕上的位置
在我的应用程序中,我需要一次显示同一 NIB 的多个窗口,并且它将根据计时器关闭/释放, 除了窗口位置之外,一切都工作正常。我的要求是,它应该将窗…
NSWindow 关闭事件
我有一个应用程序,通过按下按钮打开第二个 NSWindow 。这个新窗口是使用 [NSApp runModalForWindow:] 打开的。我希望能够确定用户是否关闭第二个窗口…
NSWindowController 和 NSViewController
可能是一个非常简单的问题,但我无法理解它。 我想创建某种向导:一个 NSWindow 显示为另一个 NSWindow 的工作表,并且应该依次显示三个不同的 NSView…
NSWindowController 上的 windowDidLoad windowWillLoad 从未调用过
我正在使用以下代码创建一个窗口: if(hudWindow == nil) hudWindow = [[TimelogWindowController alloc] initWithWindowNibName:@"TimelogWindow" ow…
Cocoa 中的模态窗口
我正在尝试创建一个自定义模态窗口,这是迄今为止我拥有的代码: NSWindowController *modalSheet = [[NSWindowController alloc] initWithWindowNibN…
来自应用程序的新 NSWindow - 不可能完成的任务?
好吧,我做错了什么? 1.创建了可可应用程序和名为:window2AppDelegate的appDelegate 2。 window2AppDelegate.h #import "PrefWindowController.h" @…
来自应用程序的新 NSWindow - 不可能完成的任务?
好吧,我做错了什么? 1.创建了可可应用程序和名为:window2AppDelegate的appDelegate 2。 window2AppDelegate.h #import "PrefWindowController.h" @…
NSWindow 关闭时如何收到通知
我怎样才能注意到 NSWindow 何时应该或将要关闭?我想要像 windowWillClose 这样的东西。不幸的是,NSWindowController 没有像 UIViewController 那样…
如何显示从 xib 加载的工作表? (MacOSx)
我有一个 xib 文件,其中只有一个 NSPanel,我试图将此面板显示为模式表(使用 beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo…