【发布时间】:2021-05-22 15:42:51
【问题描述】:
动画
圆形背景按下效果
在 Android 中,我可以通过使用系统选择器以非常简单的方式实现上述效果。
<Button
android:gravity="center"
android:textSize="18sp"
android:minHeight="56dp"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="?attr/actionBarItemBackground"
android:text="1" />
但是,目前,我尝试在 iOS 中实现这样的功能。我正在使用UIButton
默认UIButton 的按下行为不会执行任何精美的动画和最终效果。它只是改变按钮文本的颜色。
我想知道,在 iOS 中,如何实现与我的 Android 相同的动画和最终效果?
【问题讨论】: