UISegmentedControl Behaviour

坚强是说给别人听的谎言 提交于 2019-12-04 09:58:45

Look in the UISegmentedControl.h header file (an easy way is to double click on "UISegmentedControl" in XCode with Command held down).

In there you'll see a number of items in a _segmentedControlFlags struct. If you make a category on UISegmentedControl, you can manipulate any of those elements - including dontAlwaysToggleForTwoSegments which as you might guess by the name is what you are looking for.

Since this is documented in the API header (though not in the actual documentation) it should be pretty safe to use.

This default behavior has been changed in the 3.0 API.

In 3.0, "_segmentedControlFlags" has been changed to the "momentary" property, which can still be found in the UISegmentedControl.h header file.

Accessing the _segmentedControlFlags via an Category is considered as use of a private API and thus a violation of the License Agreement by Apple, as I had to learn today. Until now, I thought, Categories are a language feature to fix someone elses horrible class design...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!