Sunday, August 26, 2012

Concatenate two strings in objective - C


NSString *hello = @"Hello";
NSString *world = @"World";
NSString *helloWorld = [hello stringByAppendingString:world];

No comments:

Post a Comment