0

如何检查NSWindowController已经存在多少个 do 实例?我想打开同一个窗口控制器的多个窗口,显示不同的内容。

窗口以这种方式打开:

....
hwc = [[HistogrammWindowController alloc] init];
....

我知道要检查一个已经存在的控制器:

if (!hwc)
...

但我需要知道多个打开的窗口控制器的数量。那会是什么样子?

谢谢

4

1 回答 1

1

您可以在 中跟踪每个窗口实例NSSet,除非您需要访问它们的创建顺序,在这种情况下使用NSArray. 当一个窗口出现时,将其添加到给定的集合中,当它关闭时,将其删除。作为一个额外的好处,您可以在应用程序退出时通过遍历集合来关闭每个打开的窗口。

也许有点像这样:

- (IBAction)openNewWindow:(id)sender {
    HistogrammWindowController *hwc = [[HistogrammWindowController alloc] init];
    hwc.uniqueIdentifier = self.uniqueIdentifier;

    //To distinguish the instances from each other, keep track of
    //a dictionary of window controllers for UUID keys.  You can also
    //store the UUID generated in an array if you want to close a window 
    //created at a specific order.
    self.windowControllers[hwc.uniqueIdentifier] = hwc;
}

- (NSString*)uniqueIdentifier {
    CFUUIDRef uuidObject = CFUUIDCreate(kCFAllocatorDefault);
    NSString *uuidStr = (__bridge_transfer NSString *)CFUUIDCreateString(kCFAllocatorDefault, uuidObject);
    CFRelease(uuidObject);
    return uuidStr;
}

- (IBAction)removeWindowControllerWithUUID:(NSString*)uuid {
    NSWindowController *ctr = self.windowControllers[uuid];
    [ctr close];
    [self.windowControllers removeObjectForKey:uuid];
}

- (NSUInteger)countOfOpenControllers {
    return [self.windowControllers count];
}
于 2013-03-12T21:42:53.143 回答