我有两个类:(DashboardViewController
有一个整数变量 'userid')和LoginViewController
. 我实例化 aDashboardViewController
并设置userid
from的值LoginViewController
,但是当我打印 in 的值时userid
,DashboardViewController
它会打印0
。有人可以帮我吗?
这就是我实例化DashboardViewController
的LoginViewController
方式 ('serverOutput' 是一个包含单个整数值的字符串:
DashboardViewController *newView = [[DashboardViewController alloc] init];
[self presentViewController:newView animated:YES completion:nil];
newView.userid = [serverOutput intValue];
然后我去DashboardViewController
放:
NSLog([NSString stringWithFormat:@"%d",userid]);
这会打印 0 而不是它应该打印的整数值。任何帮助,将不胜感激。