I\'m thinking of a way to have a UIView render itself onto another UIView as well as the first one. So I have my main UIView with it\'s bounds, and the UIView also renders i
Create another instance of the UIView you wish to "clone" and add it as a subview to another view. You don't really clone a UIView object, you simply create another instance of it.