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;
...未经测试,仅凭记忆。