Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a UiTextView in That I want to Justified the text can anyone help me to do that

share|improve this question
possible duplicate of Justified Alignment in UITextView - iPhone – August Lilleaas Oct 19 '10 at 12:49

2 Answers

it doesnt look like its currently available with just the standard api's but here is a relatable stackoverflow solution.

http://stackoverflow.com/questions/2544905/how-to-change-an-uilabel-uifonts-letter-spacing

share|improve this answer

This might help, I made this for a UILabel, it's not perfect, I just add spaces until each line fills the width of the label's rect.

+ (void) justifyText:(UILabel*) label
{
    NSString *text = label.text;
    text = [text stringByReplacingOccurrencesOfString:@"\n" withString:@" "];

    UIFont *font = label.font;
    CGRect rect = label.frame;

    NSArray *wordArray = [text componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

    NSMutableString *lineBreakText = [NSMutableString stringWithString:@""];
    NSMutableArray *lines = [NSMutableArray array];

    for (NSInteger i = 0; i < [wordArray count]; ++i)
    {
        NSMutableString *testStr = [NSMutableString stringWithString: lineBreakText];
        if (i != 0)
        {
            [testStr appendString:@" "];
        }
        [testStr appendString:[wordArray objectAtIndex:i]];

        CGSize testSize = [testStr sizeWithFont:font constrainedToSize:rect.size lineBreakMode:UILineBreakModeCharacterWrap];

        if (testSize.height > [font lineHeight])
        {
            [lines addObject:lineBreakText];
            lineBreakText = [NSMutableString stringWithString:@""];
            [lineBreakText appendString:[wordArray objectAtIndex:i]];
        }
        else
        {
            if (i != 0)
            {
                [lineBreakText appendString:@" "];
            }
            [lineBreakText appendString:[wordArray objectAtIndex:i]];
        }

        if (i >= [wordArray count] - 1)
        {
            [lines addObject:lineBreakText];
        }
    }

    NSMutableString *spacingText = [NSMutableString stringWithString:@""];
    for (NSInteger i = 0; i < [lines count] - 1; ++i)
    {
        NSString *line = (NSString*)[lines objectAtIndex:i];
        NSMutableString *spacedStr = [NSMutableString stringWithString:line];

        NSArray *wordArray = [text componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];

        NSInteger spacesCount = [wordArray count] - 1;

        if (spacesCount <= 0)
        {
            continue;
        }

        NSRange findInRng = NSMakeRange(0, [spacedStr length]);
        NSRange spaceRng = [spacedStr rangeOfString:@" " options:0 range:findInRng];

        CGSize testSize = [spacedStr sizeWithFont:font constrainedToSize:rect.size lineBreakMode:UILineBreakModeCharacterWrap];

        while (testSize.height <= [font lineHeight])
        {
            if (spaceRng.location == NSNotFound)
            {
                findInRng = NSMakeRange(0, [spacedStr length]);
                spaceRng = [spacedStr rangeOfString:@" " options:0 range:findInRng];
            }

            [spacedStr insertString:@" " atIndex:spaceRng.location];
            testSize = [spacedStr sizeWithFont:font constrainedToSize:rect.size lineBreakMode:UILineBreakModeCharacterWrap];

            findInRng = NSMakeRange(spaceRng.location + 2, [spacedStr length] - spaceRng.location - 2);
            spaceRng = [spacedStr rangeOfString:@" " options:0 range:findInRng];
        }

        if (i != 0)
        {
            [spacingText appendString:@"\n"];
        }
        [spacingText appendString:spacedStr];
    }

    [spacingText appendString:@"\n"];
    [spacingText appendString:(NSString*)[lines lastObject]];


    [label setLineBreakMode:UILineBreakModeTailTruncation];
    [label setText:spacingText];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.