I'm trying to display the items in an array using the following:
NSString *alertString = [NSString stringWithFormat:@"%@", path];
Which works fine, but when I display the string it gets displayed in the following way:
(
A,
B,
C,
D
)
Is there a way to get it to display in a different way, such as all on one line and without brackets, commas or line returns like this:
A B C D