I have an app using progress views with custom images. I use the code below:
[cell.proStatus setTrackImage: [[UIImage imageNamed:@"CircleGrey.png"] resizableImageWithCapInsets:UIEdgeInsetsZero]];
[cell.proStatus setProgressImage: [[UIImage imageNamed:@"CirclePurple.png"] resizableImageWithCapInsets:UIEdgeInsetsZero]];
It all works fine in iOS 6 and 7.0 - BUT when updating to iOS 7.1 it doesn't show the images - just the small little thin line (the standard progress view). What do I do?
I have searched and read here in stack overflow of course. And i have found the following:
UIProgressView custom track and progress images in iOS 7.1
But I can't get it to work? I'm a little new to this programming. Can someone please tell me (simple and basics) what i have to do to get it to work? In the thread I linked to the answer is to implement a JEProgressView from github. Maybe I'm just too much a beginner to completely understand how to do that. I have googled and tried, but it just won't work.