i am doing following parsing in objective c.
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
if (!_chars) {
_chars = [string mutableCopy];
} else {
[_chars appendString:string];
[_chars appendString:break line??];
}
}
i want to append or break line after every string found. How can i do this ?
Should add new line.