在我的 iPhone 应用程序中,我有 2 个 UIControls 一个 ViewController.h 和一个 selectionScreen.h。
selectionScreen 是这样设置的
@interface selectionScreen : ViewController{
我正在尝试从 selectionScreen 更改放置在主 ViewController 中的标签
到目前为止,我在 SelectionScreen.m 中有这个(personTotal1.text 是另一个 UIcontrol 中的标签)
- (IBAction)Change:(id)sender{
int x=123;
NSString *y =[NSString stringWithFormat:@"%i",x];
personTotal1.text=y;
NSLog(@"%@",personTotal1.text);
}
当我 NSLog 检查值是否已更改时,它返回 null,我怎样才能使其在 Selectionscreen 中的交互(例如按下按钮)更改另一个屏幕中的标签文本。