views:

18

answers:

1

hi how to remove the current view displayed on tabbar controller. the view is added using [self.tabBarController.view addSubview:myView.view]. What should be done in myView to remove this view.

+1  A: 

try this

[myView.view removeFromSuperview];

Reena