I have this code that changes the text of an NSTextField
[TextField setStringValue: [PrinterCard print]];
(PrinterCard print returns an NSString) What I want to do now is I want to append the PrinterCard print string to the text of TextField. I also want to do this on the next line, so I want basically to append this:
@"\n%@", [PrinterCard Print]
How is this done?