5

NSAttributedString を使用して、以下のように三角形の中にテキストを作成しようとしました。

http://postimg.org/image/rp9fukgaj/

定義された形状内にテキストを合わせるために「NSLineBreakByWordWrapping」メソッドを使用しました。しかし、テキストの最初の単語が分割され、その解決策が見つかりませんでした。テキストを分割するのではなく、次の行にジャンプさせたい。どうやってやるの?

私が使用したコードの下;

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.view.backgroundColor=[UIColor blackColor];
    CTFontRef fontRef = CTFontCreateWithName((CFStringRef)@"HelveticaNeue-Regular", 15.0f, NULL);     
    NSMutableParagraphStyle* paragraph = [NSMutableParagraphStyle new];
    paragraph.headIndent = 10;
    paragraph.firstLineHeadIndent = 10;
    paragraph.tailIndent = -10;
    paragraph.lineBreakMode = NSLineBreakByWordWrapping;
    paragraph.alignment = NSTextAlignmentCenter;
    paragraph.paragraphSpacing = 15;    
    NSDictionary *attrDictionary = [NSDictionary dictionaryWithObjectsAndKeys: (__bridge id)fontRef, (NSString *)kCTFontAttributeName, (id)[[UIColor whiteColor] CGColor], (NSString *)(kCTForegroundColorAttributeName),paragraph,NSParagraphStyleAttributeName, nil];    
    CFRelease(fontRef);
    NSAttributedString *attString = [[NSAttributedString alloc] initWithString:@"Initially, now I create the paragraph style and apply it to the first character. Note how the margins are dictated: the tailIndent is negative, to bring the right margin leftward, and the firstLineHeadIndent must be set separately, as the headIndent does not automatically apply to the first line." attributes:attrDictionary];
    [(CustomView *)[self view] setAttString:attString];
}
4

1 に答える 1

0

NSLineBreakModeのドキュメントを確認すると、単語が特定の行に収まらない場合、単語は分割されて収まるようになります。テキストが静的な場合は、おそらく改行文字を挿入して、三角形の最初の部分をスキップできます。それ以外の場合は、この制限を克服する方法を理解するために賢くする必要があります。

于 2014-05-09T23:44:02.647 に答える