iOS:删除我随机放置的图像
我用它在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)