Another solution compared to @JanB one, you can insert an NSString : @"\n" object in the format string:
In your example:
label.text = [NSString stringWithFormat:@"I am learning Objective-C for the%@ very first time!", @"\n"];
Let me know if there is a problem :)
source share