Yesterday when I was making a label for my project I discovered that I can use two formats for displaying text on screen:
label.text = @"Hello world";
And
NSString* textForLabel =[NSString stringWithFormat:@"Hello world"];
[label setText:textForLabel];
They both do the same thing.
Question - which one is better to use for app development and why?