Created
October 20, 2010 03:47
-
-
Save hammerdr/635728 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (id)init | |
{ | |
... | |
loginController = [LoginController createWithDelegate:self]; | |
... | |
var controllers = [loginController, stepOneController, stepTwoController]; | |
[bodyView addSubview:[loginController view]]; | |
... | |
} | |
- (void)moveToNextView:(id)sender | |
{ | |
... | |
[[loginController view] removeFromSuperview]; | |
[bodyView addSubview:[stepOneController view]]; | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment