我有一个有多个视图的程序,其中一个有标签(这个问题的LabelView),另一个有文本字段(这个问题的TextView)。我想从文本字段中获取信息,并将其放在标签上,我认为最简单的方法是从 TextView 调用方法 LabelView。
我尝试了几件事:
我尝试在 LabelView 中放置一个使用参数更改标签值的方法。然后调用TextView中的方法,通过参数传递数据。
我试着用这个问题做一个代表。不幸的是,最后一步(添加
settingView.viewControllerDelegate=self
到viewDidLoad
方法)失败了。settingView
是一个未声明的标识符。
有谁知道我应该怎么做?
编辑:这是我使用 Xman 的父/子视图理念所做的一些事情。这是在 TextView.m 中:
NSInteger curScore = [self.ToP1Score.text integerValue];
NSInteger curPhase = [self.ToP1Phase.text integerValue];
self.ToP1Score.text = [NSString stringWithFormat:@"%d", (curScore += [self.player1Txt.text integerValue])];
if ([self.player1Txt.text integerValue] < 50) {
self.ToP1Phase.text = [NSString stringWithFormat:@"%d", (curPhase += 1)];
}