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