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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -