I don\'t know if this is possible, but what I would like to do is add a subview several times to the view. I have tried something like this:
[self.view addSubvie
A view can only be contained in a single parent view's hierarchy. As soon as you add it to a new one, it is removed from the previous one. In this case, it is being removed and added back to the same view's hierarchy. You would need to make a copy of the sub-view to have it appear multiple times.