Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. [attrs setValue: paragraphStyle forKey: NSParagraphStyleAttributeName];
  2. [m_textView setTypingAttributes: attrs];
  3.  
  4. paragraphStyle = [[NSMutableParagraphStyle alloc] init];
  5. [paragraphStyle setFirstLineHeadIndent: indent];
  6. [paragraphStyle setHeadIndent: indent];
  7. [storage addAttribute: NSParagraphStyleAttributeName value: paragraphStyle range: range];
  8. if( range.length == 0 )
  9. {
  10. [attrs setValue: paragraphStyle forKey: NSParagraphStyleAttributeName];
  11. [m_textView setTypingAttributes: attrs];
  12. }
  13. [paragraphStyle release];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement