drawAtPointで複数行テキストを描画する方法はありますか? 私はUILineBreakModeWordWrapを試しましたが、うまく動作していないようですね?drawAtPointを使用した複数行テキスト(ワードラップ)ですか?
このコードを作業用の複数行テキストに変換する方法はありますか?
point = CGPointMake(boundsX, 50);
[self.heading drawAtPoint:point forWidth:labelWidth withFont:mainFont minFontSize:12.0 actualFontSize:NULL lineBreakMode:UILineBreakModeWordWrap baselineAdjustment:UIBaselineAdjustmentAlignBaselines];
ありがとうございます!
これは何か? [self.heading drawInRect:(contentRect)withFont:mainFont lineBreakMode:UILineBreakModeWordWrapアラインメント:UITextAlignmentCenter]; –
はい..まさに.. – EmptyStack