在视图中淡入淡出UIButton

Mad*_*APP 5 uibutton ipad ios

在我的iPad应用程序中,我需要显示封面 - 出版物的图像.用户可以点击封面以获取详细信息.

我想过将UIButtons渲染为自定义按钮,封面图像为背景图像.是否可以淡入淡出UIButton?用户可以选择要显示的出版物类别,并且他更改了我希望淡化某些出版物的类别.

jrt*_*ton 38

alpha任何UIView(包括a UIButton)的属性都可以使用基于块的动画方法进行动画处理:

[UIView animateWithDuration:0.25 animations:^{myButton.alpha = 0.0;}];
Run Code Online (Sandbox Code Playgroud)

这将使您的按钮在0.25秒内消失.设置alpha为1.0以再次淡入.


Jus*_*tas 6

如果您希望按钮在动画制作动画时响应事件,请确保启用用户交互

[UIView
        animateWithDuration:5.0
        delay:0.0
        options:UIViewAnimationOptionAllowUserInteraction
        animations:^{ button.alpha = 0.0; }
        completion:nil];
Run Code Online (Sandbox Code Playgroud)