Progress view height in iOS 7

后端 未结 6 1335
北荒
北荒 2020-12-14 00:49

I want to increase the height of progress view in iOS 6 and below i am doing this using appearence method

  UIImage *progressImage = [[UIImage imageNamed:@\"         


        
6条回答
  •  心在旅途
    2020-12-14 01:46

    You can note that frame cannot be set by appearance accessor. You have to set it on each progress view separately.

    Usually, the height is set depending on progress bar style.

    - (id)initWithProgressViewStyle:(UIProgressViewStyle)style; // sets the view height according to the style
    

提交回复
热议问题