我想把一个视图移到另一个视图的上方,我怎么知道视图的z索引,以及如何移到顶部?


当前回答

如果你想通过XCode的Interface Builder来实现,你可以使用Editor->Arrangement下的菜单选项。在那里你会发现“发送到前面”,“发送到后面”,等等。

其他回答

IB和Swift

在流动布局中,黄色是父视图,红色,绿色和蓝色是黄色的兄弟子视图,

目标是将子视图(假设为绿色)移动到顶部。

在接口生成器中

在界面构建器中,你所需要做的就是将你想要显示在文档大纲列表顶部的视图拖到底部。

或者,你可以选择视图,然后在菜单中选择编辑器>安排>发送到前面。

在斯威夫特

有几种不同的方法可以通过编程来实现这一点。

方法1

yellowView.bringSubviewToFront(greenView)

这种方法相当于上面的IB答案。 它只在子视图是彼此的兄弟视图时起作用。 子视图数组包含在yellowView.subviews中。这里,bringSubviewToFront将greenView从索引0移动到索引2。这可以观察到 打印(yellowView.subviews.indexOf(持续)

方法2

greenView.layer.zPosition = 1

This method just moves the 3D position of the layer higher (closer to the user) on the z-axis. Since the default is 0 for all the other views, the result is that the greenView looks like it is on top. However, it still remains at index 0 of the yellowView.subviews array. This can cause some unexpected results, though, because things like tap events will still go first to the view with the highest index number. For that reason, it might be better to go with Method 1 above. The zPosition could be set to CGFloat.greatestFiniteMagnitude (CGFloat(FLT_MAX) in older versions of Swift) to ensure that it is on top.

如果你正在使用cocos2d,你可能会看到[parentView bringSubviewToFront:view]的问题,至少它不适合我。我没有把我想要的视图放到前面,而是把其他视图放到后面,这样就成功了。

[[[CCDirector sharedDirector] view] sendSubviewToBack:((UIButton *) button)]; 

我们可以在ios中使用zPosition

如果我们有一个名为salonDetailView的视图 例如:@IBOutlet弱var salonDetailView: UIView!

以我为例,请看图片

并有GMSMapView的UIView @IBOutlet weak var mapViewUI: GMSMapView!

在mapViewUI上显示View salonDetailView

使用zPosition如下所示

salonDetailView.layer.zPosition = 1

你可以使用视图层的zPosition属性(它是一个CALayer对象)来改变视图的z-index。

theView.layer.zPosition = 1;

正如维克多·诺德林(Viktor Nordling)补充的那样,“大价值是最重要的。你可以使用任何你想要的值,包括负值。”缺省值为0。

您需要导入QuartzCore框架来访问该层。只需在实现文件的顶部添加这行代码。

#import "QuartzCore/QuartzCore.h"
[parentView bringSubviewToFront:view] ;