我有两个控制器 A 和 B 在 B 中有一个标签和一个字符串 在 A 我写了下面的代码
B *ObjB =[[B alloc]initWithNibName:@"B" bundle:nil];
ObjB.Mylabel.text=[NSString stringWithString:@"Add New name"];
ObjB.MyString=[NSString stringWithString:@"new string name"];
[self.navigationController pushViewController:ObjB animated:YES];
[ObjB release];
我只得到 B 中的 ObjB.MyString 值,没有得到标签文本。任何人都可以帮忙。在此先感谢。