rendering a new line in a string (\n) with drawRect
- by Mrwolfy
I am trying to render a string with a new line (line break \n), using drawRect.
The code below renders the my string as a single line, with no line break, even though I am using the \n character. See the second to last line.
UIFont *font = [UIFont fontWithName:@"HelveticaNeue-CondensedBlack" size:fontSize];
CGPoint point = CGPointMake(0,0);…