Make a segment of a segmented control invisible

扶醉桌前 提交于 2019-12-04 19:23:15

问题


Is it possible to make one segment of a segmented control invisible?


回答1:


Though it seems there is no way to hide a segment in a segment control, you could remove a segment from the segment control using removeSegmentAtIndex:animated: method. You need either insertSegmentWithImage:atIndex:animated: or insertSegmentWithTitle:atIndex:animated: method to insert the segment again.

Instead of hiding/showing a segment you could consider enabling/disabling it using setEnabled:forSegmentAtIndex: method.




回答2:


You can't hide it but you can make its width very very small which will make it invisible for the user. It has to be > 0 because 0 = automatic width.

[yourSegmentedControl setWidth:0.1 forSegmentAtIndex:1];

To be in the safe side, also disable it to reduce the chance of selection to zero.

[mapTypeSC setEnabled:NO forSegmentAtIndex:1];



回答3:


Yes ,try this it's working for me ,It's only one line of code ,

Objective C

 [self.segmentControl removeSegmentAtIndex:0 animated:NO];

Swift

 segmentControl.removeSegment(at: 0, animated: false)

The code remove 0 index segment and show only one segment invisible.

Hope this helps.




回答4:


If you want only one segment then why to use segment control, you can directly use a button..



来源:https://stackoverflow.com/questions/8209331/make-a-segment-of-a-segmented-control-invisible

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