I am trying to set track and progress images for a progressview. What i have tried is setting the images in the interface builder and by code. Both are not working. I have read that this is a bug that was also present on iOS7. So far i haven't found a suitable fix.
What i have currently:
self.progressView.trackImage = UIImage(named: "Run - GoalEmpty")?.resizableImageWithCapInsets(UIEdgeInsetsZero)
self.progressView.progressImage = UIImage(named: "Run - GoalFull")?.resizableImageWithCapInsets(UIEdgeInsetsZero)
Also tried setting the tint to clearColor. The progressbar is working perfectly, only the images aren't. Does anyone has a fix for this?