Can't seem to figure this out. I'm attempting to load a UIView (preferably sliding in from the right) on button tap but it isn't changing after the first page.
- I click the register button on the settings page and it loads the first register page, then on the first register page, when I click the continueButton to load the second page it wont do anything at all..
SettingsPage.m:
- (void)regsiterButton:(UIButton *)standardButton { MAINVIEWCONTROLLER.mainView = [[RegisterStep1 alloc] initWithFrame:MAINVIEWCONTROLLER.mainView.frame]; } RegisterStep1.m - Attempting to load the next register page, but it isn't working:
- (void)continueButton:(UIButton *)standardButton { MAINVIEWCONTROLLER.mainView = [[RegisterStep2 alloc] initWithFrame:MAINVIEWCONTROLLER.mainView.frame]; }