我找到的大部分方法都是單例類。
我想從menuscreen.m
中傳遞一個值到helloworldlayer.m
中,能不能請高手指點一個最簡單的方法?
謝謝
我試過的方法,不過沒用。
- (void) changeScenePlay
{
CCScene *testscene = [HelloWorldLayer scene];
testscene.number = 1;
[[CCDirector sharedDirector] replaceScene:testscene];
}
Cocos2d-x中一個CCNotificationCenter類,可以訂閱和發送消息,而且可以包含數據,在Cocos2d中應該是NSNotificationCenter?(你找找,名字應該差不多~),它可以實現不同的場景中傳遞數據~