After running my app through the AddressSanitizer I got a heap buffer overflow error.
The lines causing that are in - (void)setProgressTintColor:(UIColor *)progressTintColor:
CGColorGetComponents is not guaranteed to return 4 components in all cases. In my case it returned 2 (color was white). To fix that, please replace the lines above with the following:
Hello Yannick,
After running my app through the AddressSanitizer I got a heap buffer overflow error. The lines causing that are in
- (void)setProgressTintColor:(UIColor *)progressTintColor
:CGColorGetComponents
is not guaranteed to return 4 components in all cases. In my case it returned 2 (color was white). To fix that, please replace the lines above with the following: