I have 5 String i want that they must be store in singe NSString all the values separate with | sign
|
NSString *first=@\"Ali\"; NSString *
NSArray *myStrings = [[NSArray alloc] initWithObjects:first, second, third, fourth, fifth, nil]; NSString *joinedString = [myStrings componentsJoinedByString:@"|"]; // release myStrings if not using ARC.