FirstViewController:
SecondViewController* controller;
@property (nonatomic, assign) SecondViewController* controller;
使用此方法,我将访问文本:
FirstViewController:
controller = [[[SecondViewController alloc] init] autorelease];
test = controller.textField.text;
NSLog(@"%@", test);
我还制作了一个前向类声明并导入了Header。 textField也声明为property。 “test”是我的FirstViewController中带有属性的NSString。
为什么NSLog()给我(NULL)?我不明白......
P.S。抱歉我的英文不好
问候