在视野中淡入淡出UIButton [英] Fading in and out UIButton in view

查看:168
本文介绍了在视野中淡入淡出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渲染为自定义按钮,封面图像为背景图像。是否有可能将UIButton淡入淡出?用户可以选择要显示的出版物类别,并且他更改了我希望淡化一些出版物的类别。

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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆