iPhone效果隐藏慢速物体

发布于 2024-10-20 18:37:12 字数 220 浏览 1 评论 0原文

我有一个问题:在我的应用程序中我有一个 UISlider。它的功能是设置我包含的一些文件的音量。我想做这件事:当用户点击屏幕时滑块将隐藏,而当用户重新点击屏幕时滑块将不会隐藏。但有两个问题: 1.- 我想使用缓慢的隐藏效果,不是从 .alpha=0.0 到 .alpha=1.0,而是逐渐 2.- 如果用户在滑块要隐藏或显示时点击屏幕,我不知道该怎么办

对不起我的英语,我是意大利人:)

谢谢

i've a problem : in my app i've a UISlider. Its function is to set the volume of some files i've included. I want to do this thing : the slider will be hide when user tap the screen and will be not hide when the user retap the screen. But there were 2 problems :
1.- i want to use a slow hide effect, not from .alpha=0.0 to .alpha=1.0, but gradually
2.- i don't know what to do if user tap the screen when slider is going to hide or to show

Sorry for my english, i'm italian :)

Thanks

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

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

发布评论

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

评论(1

你的背包 2024-10-27 18:37:12

使用动画

// 慢慢隐藏滑块

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
slider.alpha = 0.0;
[UIView commitAnimations];

// 显示滑块

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
slider.alpha = 1.0;
[UIView commitAnimations];

Use animations

// To hide the slider slowly

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
slider.alpha = 0.0;
[UIView commitAnimations];

// To show the slider

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
slider.alpha = 1.0;
[UIView commitAnimations];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文