DACircularProgress
DACircularProgress copied to clipboard
How to change the start position and end position ?
I want to change the start and end position of the circular progress view. How can I do that? Thanks
A quick way to do it is using CATransform3DMakeScale:
self.circularProgressView.layer.transform = CATransform3DMakeScale(-1, -1, 1); and it starts from bottom (6 o'clock).