We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf9f7a commit f8b8678Copy full SHA for f8b8678
Classes/ios/UIProgressView+FlatUI.m
@@ -12,15 +12,14 @@
12
@implementation UIProgressView (FlatUI)
13
14
- (void) configureFlatProgressViewWithTrackColor:(UIColor *)trackColor
15
- progressColor:(UIColor *)progressColor {
+ progressColor:(UIColor *)progressColor {
16
17
-
18
- UIImage *progressImage = [[UIImage imageWithColor:progressColor cornerRadius:4.0]
19
- imageWithMinimumSize:CGSizeMake(10, 10)];
+ UIImage *progressImage = [UIImage imageWithColor:progressColor cornerRadius:4.0];
20
UIImage *trackImage = [[UIImage imageWithColor:trackColor cornerRadius:4.0]
21
imageWithMinimumSize:CGSizeMake(10, 10)];
22
23
self.trackImage = trackImage;
24
self.progressImage = progressImage;
+
25
}
26
@end
0 commit comments