基本实现原理:
1.设置一个九宫格背景图;如,var imge = new ccui.Scale9Sprite();
2.根据传入的参数 string 和宽度进行设置;
3.默认有一个宽度,读取labelTTF创建的文字高度;
4.设置背景图片的大小;
代码例子如下:
auto spriteBg = new cc.Scale9Sprite();
void addString(string str,int width)
{
int spriteW = spriteBg.width;
auto label = new cc.LabelTTF(str,"Arial",20,cc.size(width?width:spriteW,0),对齐方式);
spriteBg.width = label.width;
spriteBg.height = label.height;
this.addChild(label);
}
原文链接:https://www.f2er.com/cocos2dx/340766.html