我正在使用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中的错误吗?