English 中文(简体)
是否允许分层支持的NSVV兄弟姐妹相互重叠?
原标题:Are layer-backed NSView siblings allowed to overlap?

I m a little confused. The Apple Documentation states this:

Note: For performance reasons, Cocoa does not enforce clipping among sibling views or guarantee correct invalidation and drawing behavior when sibling views overlap. If you want a view to be drawn in front of another view, you should make the front view a subview (or descendant) of the rear view.

因此,根据这个观点,兄弟姐妹的观点不应该重叠, 否则,行为是没有定义的。

Cocoa幻灯片演示应用 中,然而,有一层支持的NSView兄弟姐妹<强势>do 重叠 ,似乎效果很好:

Cocoa 幻灯片截图

那么可可幻灯片样本的代码是错的吗?它只是工作上的巧合,还是文件已经过时了?自10.5以来已经过时了,也就是说?

最佳回答

重叠的视图在豹式和更高层都运作良好、有一层支撑或没有支撑层。

问题回答

经过一些研究后,苹果文件似乎确实过时了。

自10.5年以来,允许有 " 强力 " 和 " 强力 " 支持NSV的兄弟姐妹相互重叠。

http://www.cocoabuildinger.com/archive/cocoa/22891-nsview-bebehes-desplate-on-10-4-vs-10-5.html”2009年讨论,涉及苹果工程师David Duncan和Corbin Dunn 最后提供了一些明确的答案:

Overlapping views work on Leopard, but do not work before that. The documentation is out of date.

I have a group of views, each one with many smaller views inside, which need to be presented in an overlapping manner over the same rect on a window, so that they can be seen through each other. In my preliminary tests, I made each big view a sibling of a single background view. Was planning on bringing each one to the front, when necessary by re-arranging the z-order. Is there any future (or present) in this appoach?

那对狮子座会有效

资料来源:James Dempsey也在Twitter 上作了答复:

我的理解是,从10.5起,相互重叠的亲子观点是正常的,有一层支撑的或没有一层支撑的。

OpenGL 将图层支持的视图分层( well, Quartz composositor, 但它有助于将每个图层想象成一个多边形, 上面有 OpenGL 纹理), 因此它们总是支持正确的重叠 。

在CocoBuilder/Cocoa-Dev上的线索完全没有提到层。 这意味着它谈论的是普通的NSOV, 而没有支持CaLayer(或者说整个窗口只有CaLayer ) 。

所提到的一个例外是 OpenGLView (Again, without colors), 它总是将其 OpenGL 矩形组合到窗口的顶部, 消灭任何子视图。 我不认为它能让 NS OpenGLView 以层为后盾的工程, 但是可以使用 OpenGL 层, 它将在其他层之间正确组合在一起 。

另一个例外是非两层支持的观点之上的层层,这是有道理的,因为所有非两层支持的观点实际上都包含一个单一层,这当然低于其任何子层(在非两层支持的父观点中,该层支持的观点必须包含在非两层支持的母观点中)。

简言之,它从10.5开始对无层和从永远对层支持的视图起作用, 在混合和配对或使用 OpenGL 时有警告。

PS - 我并不100%确定关于重叠的非两层支持观点的言论应该被看成是粗俗的。 它是一个苹果工程师的非正式声明。 事情可能已经改变, 错误可能已经被发现, 使事情无效。 我通常会使用层来表达我想要正确重迭的意思 。

这或许对某人有用:我在MacOS 10. 7+上遇到一个问题,那就是,在 MacOS 10. 7+ 上出现了不固定的重叠的子视图。在我的应用程序中,这些观点被用来提供有关某些图形对象(选择框架、缩放控制点等)的一些信息,因此它们有一些“强度”动画

即便没有一层,但更简单的例子中,重叠的兄弟姐妹似乎也能很好地工作。我有一些动画式的观点,每个观点都有自己的定时器,它就闪烁了。我找到了两个解决方案:要么打开“强力”的玩家 ,要么“强力”同步动画 ,转而使用单一共享的定时器,同时更新所有观点。

至少这个把戏帮助了我的应用程序, 因为我不想使用这些层。

NSV 兄弟姐妹通常可以重叠。 可能令你感到困扰的一件事是 NSS 克隆观察如何在默认情况下运作。 当你有一个香草NSS CrollView 与 sibling 视图重叠时, 事物会破裂 。

这是因为 NSClipView 只能绘制滚动和复制没有改变的东西的视图部分。 当您有与滚动视图相重叠的相仿视图时, 优化不起作用, 且这些视图似乎正在滚动, 即使他们只是兄弟姐妹。

要让重叠的兄弟姐妹视图工作, 即使它们不是层支持的, 您也必须禁用此优化 :

[scrollView.contentView setCopiesOnScroll:NO];




相关问题
Taking picture with QTCaptureView

Is it possible to simply take a picture and save it somewhere using a QTCaptureView and Apple s built-in iSight? I ve seen lots of tutorials on recording video but none on simply taking a picture. Any ...

Controlling OSX windows

I m trying to control windows of a foreign OSX applications from my application. I d like to 1. move the windows on the screen 2. resize the windows on the screen 3. change the currently active window ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

How to get a flash url in a webpage using a webframe?

As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate): webView:didStartProvisionalLoadForFrame: webView:...

热门标签