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

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -