Open LeoSnek opened 6 years ago
I've added support to change progressColor & progressStrokeColor in an animation block.
progressColor
progressStrokeColor
This can be tested in MBViewController with the following animate body:
MBViewController
CGFloat newValue = 100.f - self.progressBar.value; UIColor *newColor = (newValue < 50.f) ? [UIColor orangeColor] : [UIColor blueColor]; [UIView animateWithDuration:self.animatedSwitch.on * 1.f animations:^{ self.progressBar.value = newValue; self.progressBar.progressColor = newColor; self.progressBar.progressStrokeColor = newColor; }];
The declarations of both properties in MBCircularProgressBarView are unchanged as UIColors so this change won't break anyone's code.
MBCircularProgressBarView
UIColor
I've added support to change
progressColor
&progressStrokeColor
in an animation block.This can be tested in
MBViewController
with the following animate body:The declarations of both properties in
MBCircularProgressBarView
are unchanged asUIColor
s so this change won't break anyone's code.