Circular progress bar in iOS
Friday, I meet the some problem. My boss want to add circular progress bar in one of the project. I thought, it may done by somebody. I found circular progress bar on MBProgressHUB. However, it have combining some other class. So, I extract only circular progress. Check the code below
1 2 3 4 5 6 |
#import <UIKit/UIKit.h> @interface MBRoundProgressView : UIView - (void)setProgress:(float)progress; - (float)progress; @end |