从另一个ViewController访问TextField

时间:2012-01-27 21:11:16

标签: viewcontroller

我觉得我的代码有问题。 我试图从另一个视图控制器上的文本字段读出数据,但每次我尝试访问文本字段的文本时它给我NULL。 我声明了SecondViewController的一个实例和一个这样的属性:

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。抱歉我的英文不好

问候

0 个答案:

没有答案