May be this one is easy..,
I am new to iphone development.. My question is :
I want to present a new screen after successful login, My app displays a Login screen to the user, and I have implemented the login logic in -(IBAction)login:(id)sender method when we click on the submit button.., After successful login, a new screen must be presented.
If you are using a Navigation controller you can push the new view controller onto the stack and display it through
pushViewController: animated:method. You can also usepresentModalViewController: animated:Or you can just add the new view as the subview of this view by[self.view addSubview:secondView];you can refer
UPDATE
Implement this in your current view controller