Page break in RTF.

No page break appears in my RTF document when I add the below to the RTF document.


NSAttributedString *newpg = [[NSAttributedString alloc] initWithString:@"\p" attributes:nil];


The debugger says the value if newpg is \0 instead of \p. Ive tried \page that didnt work.

NSString *pg = @"\p" give the same result as the debugger syas the value of pg is \0.


Does anyone know why this is ?

Page break in RTF.
 
 
Q