gpt4 book ai didi

iphone - 禁用模式 UIView 后面的 UIView 上的元素

转载 作者:行者123 更新时间:2023-12-03 20:21:12 26 4
gpt4 key购买 nike

我有一个比 super View 小的 UIView,因此当单击按钮时我可以将此 View 表示为模态视图。

我已成功执行以下操作:* 在父 View 中添加 subview 。* 居中此模态视图

我现在正在尝试使 UIView 后面的元素不可单击。并且还在模态视图的外侧添加灰色阴影,以便用户了解模态视图是焦点 View 。

我想知道如何实现这一目标。

我不想使用演示模式转换。我知道并且已经在其他项目中实现了这一点。如有任何帮助,我们将不胜感激。

最佳答案

最简单的事情是在“模态” View 后面放置一个带有半透明灰色背景的全屏UIView。然后它会拦截所有的触摸。它可能看起来像这样:

UIView *dimBackgroundView = [[UIView alloc] initWithFrame:theSuperview.bounds];
dimBackgroundView.backgroundColor = [[UIColor grayColor] colorWithAlphaComponent:.5f];

[theSuperview addSubview:dimBackgroundView];
[theSuperview addSubview:modalView];

为了将来引用,您可以设置 myView.userInteractionEnabled = NO 以禁用 View 上的触摸事件。

关于iphone - 禁用模式 UIView 后面的 UIView 上的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4625862/

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