i'm trying to append two NSMutablestring, but i want to make the comma separation between them. Right now the code i use is this:
NSString *astring = @"This is a string";
teststring = [[NSMutableString alloc]init];
[teststring appendString:astring];
NSLog(@"%@",teststring);
the result is :This is a stringThis is a String
i try with:
[teststring appendFormat:@",%@",astring];
but still no luck.
Please help, regards.