TL;WR
从克隆视图(NSCollectionViewItem)弹出转接的最佳方法是什么?
下午好,
我试图弄清楚如何从 itemPrototype 中分离出来,但它并不像我希望的那样直截了当,并且在某种程度上让我绊倒了。
我有一个 NSCollectionView,有可变数量的 NSCollectionViewItem,每个都有一个按钮。我希望所有我需要做的,从按钮到一个小信息窗口,将通过弹出框连接将该窗口连接到按钮,但幸运的是,这不是这样做的.
我假设因为 NSCollectionViewItem 原型上的按钮被克隆以填充 NSCollectionView,所以当它被调用时,它会将混合消息传递给 segue。具体来说,当我按下其中一个按钮时,我收到以下错误。
*** Assertion failure in -[ProductTile presentViewController:animator:], /SourceCache/AppKit/AppKit-1348.11/Controllers/NSViewController.m:815
presentViewController:animator:: View '<ProductTile: 0x610000100ea0>{represented object: (null), view: <NSView: 0x6100001208c0> (frame {{0, 0}, {346, 216}}), selected: NO}''s view is not in a window/view hierarchy.
(
0 CoreFoundation 0x00007fff9688c03c __exceptionPreprocess + 172
1 libobjc.A.dylib 0x00007fff8dea576e objc_exception_throw + 43
2 CoreFoundation 0x00007fff9688be1a +[NSException raise:format:arguments:] + 106
3 Foundation 0x00007fff880408cb -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
4 AppKit 0x00007fff8c10413c -[NSViewController presentViewController:animator:] + 535
5 AppKit 0x00007fff8c10447f -[NSViewController presentViewController:asPopoverRelativeToRect:ofView:preferredEdge:behavior:] + 169
6 AppKit 0x00007fff8c3bf75a -[NSStoryboardPopoverSegue perform] + 402
7 libsystem_trace.dylib 0x00007fff9451acd7 _os_activity_initiate + 75
8 AppKit 0x00007fff8be33fc1 -[NSApplication sendAction:to:from:] + 452
9 AppKit 0x00007fff8be49a56 -[NSControl sendAction:to:] + 86
10 AppKit 0x00007fff8be49972 __26-[NSCell _sendActionFrom:]_block_invoke + 131
11 libsystem_trace.dylib 0x00007fff9451acd7 _os_activity_initiate + 75
12 AppKit 0x00007fff8be498cf -[NSCell _sendActionFrom:] + 144
13 libsystem_trace.dylib 0x00007fff9451acd7 _os_activity_initiate + 75
14 AppKit 0x00007fff8be47dc3 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2821
15 AppKit 0x00007fff8bea045f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 770
16 AppKit 0x00007fff8be46476 -[NSControl mouseDown:] + 714
17 AppKit 0x00007fff8c3b030c -[NSWindow _reallySendEvent:isDelayedEvent:] + 14125
18 AppKit 0x00007fff8bd3fd96 -[NSWindow sendEvent:] + 470
19 AppKit 0x00007fff8bd3c322 -[NSApplication sendEvent:] + 2504
20 AppKit 0x00007fff8bc65c78 -[NSApplication run] + 711
21 AppKit 0x00007fff8bbe2354 NSApplicationMain + 1832
22 Kimochi Client 0x0000000100006b62 main + 34
23 libdyld.dylib 0x00007fff939715c9 start + 1
24 ??? 0x0000000000000003 0x0 + 3
)
首先,我从中得到的是一种恐惧感。另外,我真的不认为它喜欢克隆(一定是阴暗面)。
我一直在寻找通过情节提要创建此弹出框转场的替代方法,但看起来这可能不是一个常见问题(或者我仍然不习惯相对少量的 OS X 开发人员)。
具体来说,我的问题是:我如何从 itemPrototype 中“做”一个弹出框转义?我绝对可以以编程方式执行此操作,但我之前没有在 Objective C 中编写过 gui 代码,所以我想知道在我尝试弄清楚之前,这样的 segue 绝对是可能的。由于技术上的不可能,我不想最终把头发拉出来。
感谢您抽时间阅读!我很感激你能给我的任何信息,如果我能提供更多细节,请告诉我,让我的问题更清楚。
迈克尔
编辑 [2015-05-15 18:59]
为了帮助说明我的要求,下面是两张图片;我的集合视图的示例,以及我想应用于集合视图中的项目的弹出框的示例。我希望这会有所帮助,尽管我可以看到它可能会有些混乱,所以如果您有任何问题,请告诉我。
编辑 [2015-05-15 19:08]
以上两张图片可能不足以解释我希望实现的目标,因此以下是我最终目标的代表。希望这将澄清一切。
迈克尔