2013년 4월 13일 토요일

align Justified( left and rignt ) with UILabel

NSString *text1 = @"Sample text : A his is my weblog in English, German and Korean. If you want to know more about a pizza stone once it’s cooled down.";

NSMutableParagraphStyle *style =  [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
[style setAlignment: kCTJustifiedTextAlignment];

NSAttributedString * subText1 = [[NSAttributedString alloc] initWithString:text1 attributes:@{
                                                NSParagraphStyleAttributeName : style
                                     }];

_myUiTextView.attributedText = subText1;



참조사이트 : http://stackoverflow.com/questions/1301519/justified-alignment-in-uitextview-iphone

댓글 없음:

댓글 쓰기