gpt4 book ai didi

ios - 删除以编程方式添加的 UIImageView

转载 作者:行者123 更新时间:2023-11-29 02:54:53 25 4
gpt4 key购买 nike

我知道有很多关于此的主题,我阅读了它们,但我无法让它发挥作用。这是我的代码

@property (strong, nonatomic) UIImageView *advertiseView;

- (void)startShowingImage
{
_advertiseView = [[UIImageView alloc] initWithFrame:CGRectMake(80,320,150,97)];
_advertiseView.image = [UIImage imageNamed:@"blocksAd.png"];

[self.view addSubview:_advertiseView];
NSLog(@"startShowing");
}

- (void)stopShowingImage
{
NSLog(@"stopShowing");
[_advertiseView removeFromSuperview];
}

我放置了 NSLogs 来检查这些方法是否被调用并且它们被调用了,但是首次显示后的图像永远不会消失。对此有何建议?

最佳答案

如果 NSLog(@"stopShowing") 肯定被调用,那么我认为您可能遇到的唯一问题会导致 removeFromSuperview 不工作是您不在主线程上进行更改(UI 更新)。

试试这个:

[_advertiseView performSelectorOnMainThread:@selector(removeFromSuperview) withObject:nil waitUntilDone:NO];

关于ios - 删除以编程方式添加的 UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24043855/

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