Say I have NSTextView
and custom NSRulerView
:
[![enter image description here][1]][1]
Now I want every wrapped line to indent say on 3 spaces (like on image below).
[![enter image description here][2]][2]
How to achieve it without modifying text storage attributes (i.e. Paragraph style)? Should I use NSLayoutManager
? Thanks!