gpt4 book ai didi

objective-c - 来自 NSCollectionViewItem 的 Popover Segue

转载 作者:行者123 更新时间:2023-12-03 17:10:47 24 4
gpt4 key购买 nike

TL;WR

从克隆 View (NSCollectionViewItem) 进行弹出框分离的最佳方法是什么?

<小时/>

下午好,

我正在尝试弄清楚如何从 itemPrototype 中分离出来,但它并不像我希望的那么简单,并且在某种程度上让我绊倒了。

我有一个 NSCollectionView,其中有数量可变的 NSCollectionViewItems,每个都有一个按钮。我希望我需要做的就是从按钮连接到一个小信息窗口,通过弹出框连接该窗口到按钮,但幸运的是,这不是完成的方式.

我假设因为 NSCollectionViewItem 原型(prototype)上的按钮被克隆以填充 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
)

首先,我从中得到的是一种恐惧感。另外,我真的不认为它喜欢克隆(一定是在黑暗面)。

我一直在寻找通过 Storyboard创建这个弹出窗口的替代方案,但看起来这可能不是一个常见问题(要么是这样,要么我仍然不习惯 OS X 的相对少量的开发人员) )。

具体来说,我的问题是:如何从 itemPrototype 中“执行”弹出窗口?我绝对可以通过编程方式执行此操作,但我还没有在 Objective 中编写 gui 代码C 之前,所以在我尝试弄清楚之前,我想知道这样的转场绝对是可能的。由于技术上的不可能,我不想最终把我的头发拔出来。

感谢您花时间阅读本文!感谢您提供给我的任何信息,如果我可以提供更多详细信息,请告诉我,以使我的问题更清楚。

迈克尔

编辑[2015-05-15 18:59]

为了帮助说明我的要求,下面有两张图片;我的 Collection View 的示例,以及我想要应用于 Collection View 中的项目的弹出框示例。我希望这对您有所帮助,尽管我知道这可能有些令人困惑,所以如果您有任何疑问,请告诉我。

CollectionView View I'd like to "popover" to any of the CollectionViewItems

编辑[2015-05-15 19:08]

上面两张图片可能不足以解释我希望实现的目标,因此以下是我的最终目标的表示。希望这能澄清一切。

End goal

迈克尔

最佳答案

Storyboard对于 OS X 来说相对较新。NSCollectionView 似乎并没有得到 Apple 的太多喜爱。有大量报告表明 NSCollectionView 和 Storyboard 的组合存在错误。因此,您最好采用 Non-Storyboard 方式执行此操作。

将按钮连接到 View Controller 上的操作方法可能是最简单的方法。在该操作方法中,您可以使用 sender 参数来标识按钮,并从那里标识 Collection View 项。

然后您可以打开一个弹出窗口。您可以实例化一个 View Controller 以从 NIB 加载弹出内容 View (即 [[MyViewController alloc] initWithNibName:@"MyPopOverContentView"bundle:nil])。您需要设置 View Controller 的representedObject。您将创建一个 NSPopover 并将其 contentViewController 设置为 View Controller 并配置其其他属性。然后,您可以使用 -showRelativeToRect:ofView:preferredEdge: 来呈现它。您可以相对于 sender 或其 Collection View 项 View 中的祖先 View 之一来显示它。

关于objective-c - 来自 NSCollectionViewItem 的 Popover Segue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30245047/

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