ios - how to set NSMutableParagraphStyle firstLineHeadIndent for just first paragraph -
i want set firstlineheadindent
first paragraph multi-paragraph uilabel
, how can do
nsmutableparagraphstyle *paragraphstype = [[nsmutableparagraphstyle alloc] init]; paragraphstype.firstlineheadindent = 10.0f; [att addattribute:nsparagraphstyleattributename value:paragraphstype range:nsmakerange(0, att.length)];
try use smaller range:
nsmutableparagraphstyle *paragraphstype = [[nsmutableparagraphstyle alloc] init]; paragraphstype.firstlineheadindent = 10.0f; [att addattribute:nsparagraphstyleattributename value:paragraphstype range:nsmakerange(0, 10)];
Comments
Post a Comment