cgallery
Dec 05, 2016 - 02:22
My UI has some imageview images that I successfully set.
But I'd like to know, how to clear them?
So if I do:
imageview1.image = picture
How do I underset imageview.1image back to blank/white?
My UI has some imageview images that I successfully set.
But I'd like to know, how to clear them?
So if I do:
imageview1.image = picture
How do I underset imageview.1image back to blank/white?
imageview1.image = None
Better than what I was doing, thanks!!!