Cocos2d: How to play a video in the background of a CCLayer
问题 I want the video play in the background, and the text label in the front, run the following code, video is playing, but text label does not show! -(id) init { if(!(self=[super init])) { return nil; } CGSize size = [[CCDirector sharedDirector] winSize]; // MP4 NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"m4v"]]; moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url]; [moviePlayer respondsToSelector:@selector(setFullscreen:animated: