我有一个名为“FirstViewController”的表格视图,当我选择表格中的任一单元格时,它将推送到“SecondViewController”。SecondViewController 有一个名为“randomTitle”的 UILabel,我需要根据 FirstViewController 上选定的单元格进行更改。
因此,如果选定的单元格被命名为“随机行”,我需要将 UILabel 更改为那个。
到目前为止,我尝试了这个,但运气不佳。这在 FirstViewController 中:
SecondViewController *secondView = [[SecondViewController alloc] init];
secondView.randomTitle.text = @"Test"; // hardcoding it for now
[self.navigationController pushViewController:secondView animated:YES];
但是标签没有改变。我错过了什么?笔尖连接正确。这是 SecondViewController 的 .h 的样子:
@interface SecondViewController : UIViewController
{
UILabel *randomTitle;
}
@property (nonatomic, retain) IBOutlet UILabel *randomTitle;