uiprogressview - height of progress view xcode -


is there way change height of progress view bar in xcode?

i using xcode 4.3 , need vertical progress bar. rotated bar cannot change height , displays circle.

also more effective way rotate progress bar helpful.

thanks!

some have reported changing it's frame manually work:

[self.progressview setframe:cgrectmake(0, 0, 300, 25)]; 

whereas others have reported cgaffinetransform() works well:

[self.progressview settransform:cgaffinetransformmakescale(1.0, 3.0)]; 

as rotation, use:

#define degrees_to_radians(angle) ((angle) / 180.0 * m_pi) [self.progressview settransform:cgaffinetransformmakerotation(degrees_to_radians(angle))]; 

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -