I was trying to append text without any success until I tryied this:
NSString *n_result = @"";
n_result = [n_result stringByAppendingString:[NSString stringWithFormat:@"The number "]];
n_result = [n_result stringByAppendingString:[NSString stringWithFormat:@"%@ ", n_analyze]];
n_result = [n_result stringByAppendingString:[NSString stringWithFormat:@", has "]];
n_result = [n_result stringByAppendingString:[NSString stringWithFormat:@"%i ", steps]];
n_result = [n_result stringByAppendingString:[NSString stringWithFormat:@"steps to reach 1"]];
The thing is, there must be a simpler way of doing this. But I don't know how. Can anyone help me with this? I have been searching everywhere how to do this "better".