UIProgressView改变高度

一般来说UIProgressView控件不可改变高度,找到以下代码解决这个问题:

CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 3.0f);
progressView.transform = transform;

 

需要导入CoreGraphics.framework包

猜你喜欢

转载自akunamotata.iteye.com/blog/1724416
今日推荐