所以,我有这个可以被四个视图控制器激活的弹出框。在此弹出框内,我单击一个按钮,此按钮会更改一个 UILabel,它位于激活弹出框的视图控制器中。
但是,问题是:取决于哪个视图控制器激活了弹出框,文本是不同的。
我的问题:如何设置一个 if 子句来知道从哪个视图控制器激活了弹出框?
这是更改 UILabel 的代码,我必须在其中实现 if 子句:
- (void) escolheu1:(id)sender {
[delegate menuController:self
hasPressedSomething:
[NSString stringWithFormat:@"They are panels composed by odd numbers of layers, which are crossed with each other in order to obtain more strength."]];
}
我想我必须使用 isKindOfClass 方法,也许不是,我不知道。
请各位帮忙看看好吗?
谢谢!