I\'m trying to pass an NSString by reference but it doesn\'t work.
NSString
This is the function:
+(void)fileName:(NSString *) file { file =
I suspect this is because NSString is immutable. Have you tried NSMutableString?