我对正确的锚点调整有一些问题。首先,我有主层和子层,我想做的是将某个点设置为该子层的锚点,然后将子层位置设置为(0,0)。所以,在我看来,子层应该移动到主层的(0,0)位置。
但是我下面的代码没有像我预期的那样工作。
[sublayer setAnchorPoint:ccp(x/sublayer.contentSize.width,y/sublayer.contentSize.height)];
[sublayer setPosition:ccp(0,0)];
我对正确的锚点调整有一些问题。首先,我有主层和子层,我想做的是将某个点设置为该子层的锚点,然后将子层位置设置为(0,0)。所以,在我看来,子层应该移动到主层的(0,0)位置。
但是我下面的代码没有像我预期的那样工作。
[sublayer setAnchorPoint:ccp(x/sublayer.contentSize.width,y/sublayer.contentSize.height)];
[sublayer setPosition:ccp(0,0)];