Flask接口签名sign原理与实例代码浅析
261
2022-11-05
两个ViewController间传值(一)
IOS中,在两个ViewController之间传值有多种方式,这里学习其中一种,利用临时变量在两个ViewController之间传值,这可能不是最好的传值方式,但是也是一种选择。
首先看看工程结构:
其中ViewController是第一个界面,SecondViewController是第二个界面,UserEntity为一个实体对象,用来作为在两个界面间传值的媒介。
接下来看看最后实现的效果:
下面来看看实现中的关键代码;
单击”传值“按钮时触发的代码:
[cpp] view plain copy
- (IBAction)passValueButton:(id)sender {//构建UserEntity对象UserEntity *userEntity = [[UserEntity alloc] init];userEntity.userName = self.userNameTextFiled.text;userEntity.gendar = self.gendarTextField.text;userEntity.age = [self.ageTextField.text intValue];"SecondViewController" bundle:[NSBundle mainBundle]];//设置SecondViewController中的值secondView.userEntity = userEntity;//跳转界面[self presentModalViewController:secondView animated:YES];[userEntity release];[secondView release];}
在第二个界面显示传过来值的方法:
[cpp] view plain copy
- (void)viewDidLoad{[super viewDidLoad];//显示从前一个界面传过来的值self.userNameTextField.text = self.userEntity.userName;self.gendarTextField.text = self.userEntity.gendar;//NSString转换为int型"%d",self.userEntity.age];}
以上就实现了一个简单的在两个ViewController之间传值的方式,下一次将使用代理模式在两个ViewController之间进行传值。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~