本文整理汇总了C++中CCLabelTTF::setFrame方法的典型用法代码示例。如果您正苦于以下问题:C++ CCLabelTTF::setFrame方法的具体用法?C++ CCLabelTTF::setFrame怎么用?C++ CCLabelTTF::setFrame使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCLabelTTF
的用法示例。
在下文中一共展示了CCLabelTTF::setFrame方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tableCellAtIndex
CATableViewCell* RootViewController::tableCellAtIndex(CATableView *table, unsigned int section, unsigned int row)
{
CATableViewCell* cell = table->dequeueReusableCellWithIdentifier("aaa");
if (cell == NULL)
{
cell = CATableViewCell::create("aaa");
//cell->setBackGroundView(NULL);
}
CCString* str = CCString::createWithFormat("CELL - %u", row);
CCLabelTTF* ttf = CCLabelTTF::create(str->getCString(), "Arial", 40);
ttf->setColor(ccBLACK);
ttf->setFrame(CCRect(10, 60, 0, 0));
cell->addSubview(ttf);
// CALabel* label = CALabel::create(CCRect(0, 0, 600, 100));
// label->setOpacity(128);
// label->setVerticalTextAlignmet(kCCVerticalTextAlignmentCenter);
// label->setCenterOrigin(CCPoint(300, 60));
// label->setText(str->getCString());
// cell->addSubview(label);
return cell;
}
示例2: tableViewSectionViewForFooterInSection
CAView* RootViewController::tableViewSectionViewForFooterInSection(CATableView* table, unsigned int section)
{
CAView* view = CAView::createWithFrame(CCRect(0, 0, 0, 0), ccc4(200, 255, 200, 255));
CCString* str = CCString::createWithFormat("Footer - %u", section);
CCLabelTTF* ttf = CCLabelTTF::create(str->getCString(), "Arial", 20);
ttf->setColor(ccc3(127, 127, 127));
ttf->setFrame(CCRect(10, 10, 0, 0));
view->addSubview(ttf);
return view;
}
示例3: viewDidLoad
void FirstViewController::viewDidLoad()
{
// Do any additional setup after loading the view from its nib.
CAImageView* imageView = CAImageView::createWithImage(CAImage::create("9m.jpg"));
imageView->setFrame(CCRect(200, 300, 330, 214));
this->getView()->addSubview(imageView);
CCLabelTTF* ttf = CCLabelTTF::create("Hello World!", "Arial", 50);
ttf->setColor(ccBLACK);
ttf->setFrame(CCRect(200, 450, 0, 0));
this->getView()->addSubview(ttf);
}