2010
03.01

If you are dynamically adding and removing subviews into an existing view here is how to do

Adding to the current view
[self.view addSubview: subView1];

Removing from the view
[subView1 removeFromSuperview]

No Comment.

Add Your Comment