I have 5 String i want that they must be store in singe NSString all the values seprate with | sign
NSString*first=@"Ali";
NSString*second=@"Imran";
NSString*third=@"AliImran";
NSString*Fourth=@"ImranAli";
NSString*Fifth=@"Ali Imran Jamshed";
I want to all these in single NSString to store and all valuse separeted by given sign.
