如何让图像一触摸就消失?

发布于 2024-09-11 04:12:54 字数 188 浏览 3 评论 0原文

我正在 xcode 3.1 中开发 iphone 的应用程序。

我希望相似的两个图像在依次触摸时消失。

我成功地在触摸

“播放”按钮时在 iPhone 模拟器上显示了两个图像。

现在我希望当两个相同的图像被相继“触摸”时,它们应该消失。

期望使用 Objective C 编写代码。

I am working on apllication for iphone in xcode 3.1.

I want similar two images to disappear when touched one after other.

I have succeed in displaying two images on iphone simulator on touching

'PlAY' button.

Now i want that when two same images are 'touched' one after another,they should disappear.

Expect code in Objective C.

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

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

发布评论

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

评论(1

女皇必胜 2024-09-18 04:12:54

您可以通过使用简单的动画来做到这一点,视图应该消失,稍后您可以在 UIView 动画委托内投射上下文并启动第二个动画。

aView.alpha = 1.0;
[UIView beginAnimations:nil context:@"Context1"];
[UIView setAnimationDuration: 1.0];
[UIView setAnimationCurve: UIViewAnimationCurveEaseOut];
[UIView setAnimationBeginsFromCurrentState:YES];
    aView.alpha = 0.0;
[UIView commitAnimations];

这 id 是您应该实现的委托方法:

-animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context

You can do this, by using simple animations the view should disappear, later you can cast the context inside the UIView animations delegate and start a second animation.

aView.alpha = 1.0;
[UIView beginAnimations:nil context:@"Context1"];
[UIView setAnimationDuration: 1.0];
[UIView setAnimationCurve: UIViewAnimationCurveEaseOut];
[UIView setAnimationBeginsFromCurrentState:YES];
    aView.alpha = 0.0;
[UIView commitAnimations];

This id the delegate method you should implement:

-animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文