I'm new at iOS development and after reading many tutorials about passing variables and i still need your help.
This function in my PP.m file:
- (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");
}
}
This is in my Category.m file:
- (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
}
The problem is at the line NSLog(@"Happines %d",myData); my data prints just fine, but not gets set to recipeLabel. So for testing if it works i made recipeLabel.text = @"Hello"; and the label is just fine. What am I doing wrong? And sorry for the beginner question.
