I'm trying to hack a graphing library (https://github.com/KirillM/BarChart) that unfortunately does not offer a clearChart method. So instead, I'm thinking about turning everything to white pixels if that's possible.
I know that you can set a flag for the view to be reloaded with:
[self.myView setNeedsDisplay];
This is almost there but I'd ideally not want to dig into the library: Clear UIView of drawing?