UILabel* UILabel::create() { UILabel* widget = new UILabel(); if (widget && widget->init()) { return widget; } CC_SAFE_DELETE(widget); return NULL; }
UILabel* UILabel::create() { UILabel* widget = new UILabel(); if (widget && widget->init()) { widget->autorelease(); return widget; } CC_SAFE_DELETE(widget); return nullptr; }