I dont undesratand in which situations is more convenient to pass references as functions parameters:
- (void)exportXMLToString:(NSMutableString **)aString
Can I just pass the string by value and have it back when the method finishes to execute ?
Thanks