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