I want to create a copy UIView, and I do not want to use NSKeyedArchiver, because I often create a copy of many views, and use NSKeyedArchiverwas slow.
I heard about copyor initWithZone:, but Googling found it was not good for UIView. I do not need a copy pointing to the original view, because any changes made to it also make changes to the copied one UIView.
source
share