登陆界面的页面跳转问题


我用的是Xcode4,storyboard来制作界面,
请输入图片描述
这个界面直接运行就可以弹出来,
然后我又做了一个登陆界面
请输入图片描述
我要通过登陆按钮进入到第二个界面,我想知道它如何传递参数,然后怎么把当前页面给删掉,加载这个登陆页面

我做的登陆按钮方法

   
  //定义用户名为user
  
#define kUSERNAME @"user"
//定义密码为user
#define kPassword @"user"

loginButton:(id)sender {
if ([kUSERNAME isEqualToString:_userName.text] &&
[kPassword isEqualToString:_password.text]) {
NSLog(@"用户名:%@",_userName.text);
NSLog(@"密码:%@",_password.text);
}else{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"登录" message:@"用户名或密码错误,请重新输入" delegate:self cancelButtonTitle:@"确认" otherButtonTitles: nil];
[alertView show];
}
}

ios xcode

嘴角残留的笑 12 years, 7 months ago

在第一个页面使用属性传值把需要传递的值给第二个页面,然后第一个页面中把第二个视图控制器作为模态视图推出就可以

艾泽拉斯地理 answered 12 years, 7 months ago

Your Answer