0

我是 iOS 开发的新手,在阅读了许多关于传递变量的教程之后,我仍然需要你的帮助。

我的 PP.m 文件中的这个函数:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {


if ([segue.identifier isEqualToString:@"Btn1Transport"])
{
   [segue.destinationViewController setMyData:(50)];
    NSLog(@"Transporter1");
}

if ([segue.identifier isEqualToString:@"Btn2Transport"])
{
   [segue.destinationViewController setMyData:(100)];
    NSLog(@"Transporter2");
}

}

这是在我的 Category.m 文件中:

- (void)viewDidLoad{

[super viewDidLoad];

recipeLabel.text = @"Hello"; //for test, is working

}

-(void)setMyData:(int)myData
{

    NSLog(@"Happines %d",myData);
    NSString* result = [NSString stringWithFormat:@"%d", myData];
    recipeLabel.text = result; //not working
}

问题在于 NSLog(@"Happines %d",myData); 我的数据打印得很好,但没有设置为 recipeLabel。所以为了测试它是否有效,我做了 recipeLabel.text = @"Hello"; 标签很好。我究竟做错了什么?很抱歉初学者的问题。

4

1 回答 1

3

不,您不能直接从 prepareForSegue 事件写入 TextLabel,当目标视图控制器加载时,该值将被覆盖......

您必须在目标视图控制器中设置一个变量,然后您必须将标签的值设置为等于目标视图控制器的 viewDidLoad 事件中的变量值以使其工作...

//The variable myIntVar is a private variable that should be declared in the header file as private 
- (void)viewDidLoad{

[super viewDidLoad];

recipeLabel.text = myIntVar; //set the value equal to the variable defined in the prepareForSeque
}

-(void)setMyData:(int)myData
{

    NSLog(@"Happines %d",myData);
    NSString* result = [NSString stringWithFormat:@"%d", myData];
    myIntVar = result; 
}
于 2012-09-02T08:56:48.180 回答