I am creating an application with several UIViewsthat are dynamically generated based on user inputs. These UIViewsmay contain tags, images, and text. They take some time to create, so I would like the user to be able to quickly load them in future launches of the application without having to redo them again. One of the requirements is that they must maintain their interactive state so that the user can continue to edit them.
I looked NSKeyedArchiver, but it does not seem to support this UIImage. In addition, I cannot save it as PNG, since I would like to save their interactive state.
Is there any way to do this?
source
share