似乎无法弄清楚这一点。我正在尝试UIView
在按钮点击时加载一个(最好从右侧滑入),但在第一页之后它没有改变。
- 我单击设置页面上的注册按钮并加载第一个注册页面,然后在第一个注册页面上,当我单击 continueButton 加载第二个页面时,它根本不会做任何事情..
SettingsPage.m
:
- (void)regsiterButton:(UIButton *)standardButton {
MAINVIEWCONTROLLER.mainView = [[RegisterStep1 alloc] initWithFrame:MAINVIEWCONTROLLER.mainView.frame];
}
RegisterStep1.m
- 尝试加载下一个注册页面,但它不工作:
- (void)continueButton:(UIButton *)standardButton {
MAINVIEWCONTROLLER.mainView = [[RegisterStep2 alloc] initWithFrame:MAINVIEWCONTROLLER.mainView.frame];
}