Possible Duplicate:
How do I concatenate strings in Objective-C?
Hello everyone I am new to Objc, I want to concatenate strings of the Integer value with string value. Here is my code:
[runtime setText:[NSString stringWithFormat:@"%@",self.movie.runtime]];
The result will be: 120
The result that I wish to concatenate string is: 120 Minutes.
Please share me about this. Thanks