Possible Duplicate:
How do I concatenate strings in Objective-C?
I have this:
[NSURL URLWithString: @"http://myurlc.co.uk/?no="]]
I basically want to do this:
[NSURL URLWithString: @"http://myurlc.co.uk/?no=" & tmpString]]
How would I do that in Objective-C?