请版主描述下使用的设备和系统版本。
每一次发版本前我们是有在各平台做完整的测试,在我们已有的设备上并没有出现该现状。
刚刚我重新测试了和你一样走系统api创建文本的3种方式:
auto id = Text::create();
id->setText("Test UI Text");
id->setAnchorPoint(Vector2(0, 0.5f));
id->setFontSize(14);
id->setPosition(textPos);
//id->setColor(Color3B::RED);
this->addChild(id);
textPos.y += visibleSize.height*0.2f;
auto texture = new Texture2D;
texture->initWithString("Test Texture2D initWithString", "Thonburi", 14);
auto t2 = Sprite::createWithTexture(texture);
t2->setPosition(textPos);
texture->release();
//t2->setColor(Color3B::RED);
this->addChild(t2);
textPos.y += visibleSize.height*0.2f;
auto t3 = Label::createWithSystemFont("Test Label createWithSystemFont", "Thonburi", 14);
t3->setPosition(textPos);
//t3->setColor(Color3B::RED);
this->addChild(t3);