gpt4 book ai didi

iphone - subview 打开时禁用父 View

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

我有两种看法。 viewController 和 myCustomAlert。我已将 myCustomAlert 添加为 viewController 中的 subview 。

这是将 myCustomAlert 添加为 subview 时调用的函数。

-(void)ratingAction:(id)sender
{
if ([sender isKindOfClass:[UIButton class]])
{
[[NSBundle mainBundle] loadNibNamed:@"myCustomAlert" owner:self options:nil
];

Custom_view.frame = CGRectMake(10, 100, 287, 165);

[self.view addSubview:Custom_view];
self.view.userInteractionEnabled = false;
Custom_view.userInteractionEnabled = true;

}
}

我希望禁用父 View ,因此我禁用了用户交互,但它也禁用了 subview 。怎么做??我希望我的 subview 像警报一样工作。

最佳答案

您可以尝试的一种方法是以完全隐藏其 super View Controller (即 0,0,320,460)的方式设置 subview 框架,并确保 subview 上的内容正确放置在您想要的位置,然后设置背景颜色 subview 透明。

myCustomAlert.backgroundColor = [UIColorclearColor];

关于iphone - subview 打开时禁用父 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12209369/

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