当我尝试将字符串值一页发送到UIPageViewController
中的下一页时,我得到一个null
结果,还有其他方法可以将值1传递给下一个视图吗?
这是我的代码的相关部分:
在第一页:
(void)cheakvalication{
PageContentViewController *pgvc = [[PageContentViewController alloc]init];
pgvc.strname=txtfirstname.text;
NSLog(@"txt:%@ , str : %@",pgvc.strname,txtfirstname.text);
}
在第二个:
(IBAction)OnClickRegister:(id)sender {
PageContentViewController1 *pgvc1 = [[PageContentViewController1 alloc]init];
[pgvc1 cheakvalication];
NSLog(@"name : %@",[self.strname description]);
}
所有NSLog调用输出null
。