cocos2d-iphone:cocosbuilder:CCScrollView如何定位

时间:2013-01-06 12:35:12

标签: cocos2d-iphone

我正在使用cocosBuilder提供的CCScrollView。我试图使用以下代码将其放置在屏幕的中央:

CCSprite *testSrprite = [CCSprite spriteWithFile:@"category-shop1"];
testSprite.position = ccp(0,0);
CCScrollView *test = [[CCScrollView  alloc] initWithViewSize:CGSizeMake(200, 200) container:testSrprite];
test.position  = ccp(winsize.width/2,winsize.height/2);
[self addChild:test];

但这不是定位图层。这是CCScrollView中的错误吗?

0 个答案:

没有答案