我只想更改标签的文本。在那里,我有一个到 Xib 接口的 ViewController,在该接口中创建标签并链接到 ViewController。我只是创建了一个想要更改标签文本的视图控制器的实例:
NewFormScoreViewController * newPoints=[[NewFormScoreViewController alloc] init];
[newPoints.TheNewScoreLabel setText:[NSString stringWithFormat:@"%i",newScore]];
[newPoints.view setFrame:CGRectMake(500, 500, newPoints.view.frame.size.width, newPoints.view.frame.size.height)];
[self.view addSubview:newPoints.view];
视图是可见的,但只显示占位符,而不是新字符串。[NSString stringWithFormat:@"%i",newScore] 返回了需要的String,但是好像传输不起作用。但为什么?怎么了?