Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列の長さに基づいて CCLabelTTF テキストのフォント サイズを自動的に設定する方法はありますか? 増加する数値があり、大きくなりすぎると近い画像と衝突するため...
cocos2d バージョン 3.x では、次のことができます。
CCLabelTTF *label = [CCLabelTTF whatever ....]; label.dimensions = CGSizeMake(widthYouWant,heightYouWant); label.adjustFontSizeToFit = YES; label.minimumFontSize = 8;
...メモリからのみ、テストされていません。