I'm sure that this was questioned thousand of times, and i did search on Google before posting this question.
But, my answer is, wich is the easiest way to concat strings.
For example, i have to build an url taking values of my app to pass as parameters in the url.
For example, the url that i have to request is:
http://myserver.com/myaction
and then i have to create something like this:
http://myserver.com/myaction?param1=...¶m2=value2
taking those values from my app.
What i saw is something like this:
NSString *uri = @"http://myserver.com/myaction";
NSString *concatenate = [uri stringByAppendingString: @"?param1="];
NSString *concatenate1 = [concatenate stringByAppendingString: @"value1"];
But i really don't see it nice. Is there a nicer method to concat strings? Some operator like the one in java, in php, etc?