Fading in and out UIButton in view(在视图中淡入淡出 UIButton)
问题描述
在我的 iPad 应用程序中,我需要显示出版物的封面图片.用户可以点击封面以获取详细信息.
In my iPad app I need to display cover-Images of publications. The user can tap on a cover to get details.
我考虑过将 UIButtons 渲染为自定义按钮,并将封面图像作为背景图像.是否可以淡入淡出 UIButtons?用户可以选择要显示的出版物的类别,然后他更改我想要淡出一些出版物的类别.
I thought about rendering UIButtons as custom buttons with the cover image as Background-image. Is it possible to fade UIButtons in and out? The user can choose a category of publications to be displayed, and ih he changes the category I wanted to fade some publications out.
推荐答案
任何 UIView
的 alpha
属性(包括 UIButton
)可以使用基于块的动画方法进行动画处理:
The alpha
property of any UIView
(which includes a UIButton
) can be animated using the block-based animations method:
[UIView animateWithDuration:0.25 animations:^{myButton.alpha = 0.0;}];
这将使您的按钮在 0.25 秒内淡出.将 alpha
设置为 1.0 以再次淡入.
This will fade your button out over a 0.25 second period. Set the alpha
to 1.0 to fade it back in again.
这篇关于在视图中淡入淡出 UIButton的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在视图中淡入淡出 UIButton
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01