iOS:删除我随机放置的图像

发布于 2024-11-19 00:07:52 字数 357 浏览 4 评论 0原文

我用它在 iPhone 屏幕上随机显示图像。

-(IBAction)gunshot {
UIImageView *img = [[UIImageView alloc]
initWithImage:[UIImage imageNamed:@"gunshot.png"]];
img.frame = CGRectMake(0, 0, 85, 63);
img.center = CGPointMake(random() % 350, random() % 350);
[self.view addSubview:img];
[img release];
}

现在我的“问题”是删除 2 秒后屏幕上弹出的图像。 希望您能帮助我并提前致谢。

I'm using this to display a image randomly on the iPhone screen.

-(IBAction)gunshot {
UIImageView *img = [[UIImageView alloc]
initWithImage:[UIImage imageNamed:@"gunshot.png"]];
img.frame = CGRectMake(0, 0, 85, 63);
img.center = CGPointMake(random() % 350, random() % 350);
[self.view addSubview:img];
[img release];
}

Now my "problem" is to remove the images that pops-up on the screen after lets say 2 sec.
Hope you can help me and thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枫林﹌晚霞¤ 2024-11-26 00:07:52
[img performSelector:@selector(removeFromSuperview) withObject:self afterDelay:2.0];
[img performSelector:@selector(removeFromSuperview) withObject:self afterDelay:2.0];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文