I wonder how I can use the constants NSLineSeparatorCharacter
and NSParagraphSeparatorCharacter
as a parameter to a function instead of hard coding \n
.
- (id)initWithSeparator:(id)separator {
m_separator = separator;
}
What would be the correct parameter type and what conversion needs to be done?
Depending on the file contents I wish to call the function like ...
Object* obj = [[Object alloc] initWithSeparator:NSLineSeparatorCharacter];
... or ...
Object* obj = [[Object alloc] initWithSeparator:NSParagraphSeparatorCharacter];
Apples String Programming Guide / Paragraphs and Line Breaks was not helpful, though.