Change appearance of UIStepper

后端 未结 6 1865
长情又很酷
长情又很酷 2020-12-19 06:50

UIStepper is very convenient but I want to change the appearance of it, I need to have customized icon not the plus and minus and also I want to change the color of the cont

6条回答
  •  情歌与酒
    2020-12-19 07:27

    You cannot presently do this. You'll have to write a custom UIControl object if you want to customize the icons.

    From the UIStepper Class Reference, the only parameters you can change are

      continuous  property
      autorepeat  property
      wraps  property
      minimumValue  property
      maximumValue  property
      stepValue  property
    
      value  property
    

    You cannot customize the icons.

    However, since it is a subclass of UIView, you can try changing the backgroundColor.

提交回复
热议问题