lStateHighlighted和UIControlState

lStateHighlighted和UIControlState

本文介绍了UIControlStateHighlighted和UIControlStateSelected之间有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试为UIButton设置状态。

I am trying to set a state for UIButton.

但我不知道 UIControlStateHighlighted UIControlStateSelected

有人可以帮帮我吗?

谢谢和最好的问候。

推荐答案

它们可能意味着你想要的任何东西,但一般来说它们意味着以下:

They can mean whatever you want them to, but in general they mean the following:

突出显示=用户当前正在与一些停止互动时会发生变化的事情进行互动(例如,按住按钮)

Highlighted = The user is currently interacting with something that will change once they stop interacting (e.g. holding down a button)

已选择=该项目是当前组中的活动项目(例如,分段控件中的所选项目)。这只能通过以编程方式设置来实现。

Selected = The item is current the active item in a group (e.g. The selected item in a segmented control). This can only be achieved by setting it programmatically.

这篇关于UIControlStateHighlighted和UIControlStateSelected之间有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 08:48