UISegmentedControl selected state icon image

后端 未结 6 1608
执笔经年
执笔经年 2021-02-20 07:54

How can I set the icon image for selected state of the UISegmentedControl. Is the UISegmentedControl really missing this functionality or

6条回答
  •  广开言路
    2021-02-20 08:42

    [segmentControl setBackgroundImage:image 
                              forState:UIControlStateSelected
                            barMetrics:UIBarMetricsDefault]
    

    You also have to set an image for UIControlStateNormal for this to take effect.

    Apple documentation

提交回复
热议问题