当按下按钮时,我试图将消息从弹出窗口发送到另一个视图控制器。
问题是:当我单击按钮时,视图控制器中没有任何变化。
并且按下按钮时弹出框不会错过自己。
这是我的 IBAction:
- (IBAction)sendFirstInformation:(id)sender {
PlywoodViewController *PL1 = [self.storyboard instantiateViewControllerWithIdentifier:@"Plywood"];
PL1.receiverLabel.text = @"TESTE";
PL1.receiverLabel.textColor = [UIColor blackColor];
NSLog(@"It was pressed");
}
NSLog 工作正常,但 UILabel (receiverLabel) 在 PL1 上没有改变。
有任何想法吗?我是否必须在视图控制器的类上实现任何东西,还是弹出 IBAction 中的问题?
PS:它们都是作为 UIViewControllers 创建的,所以我猜 popovers 的方法不起作用(或者可能不是,我真的不知道哈哈)。