因为描边文字只支持createWithTTF的创建方式,所以cocos studui创建的label是不能用enableOutline方法的
local label2 = cc.Label:createWithTTF("shuaibi", "Marker Felt.ttf", 36)
label2:setPosition(cc.p(cc.p(winSize.width/4,winSize.height/2 - 10)))
label2:enableOutline(cc.c4b(8, 18, 23, 255),11)
self.rootNode:addChild(label2,10)