Shadowing アプリケーションを作成しています。文章で音楽を再生するのに困っています。このような 、...
この「hello world.super world」が音楽に与えられたら、私はこうなりたい…
@implementation
....
MPMusicPlayerController *musicPlayer;
- (void) playMusicByOneSentence
{
//[musicPlayer play] is play a whole song. I want to play song by each sentence and sleep 5 sec.
//[musicPlayer play];
// I want to like following like this
[musicPlayer playByOneSentence];
}
}
playByOneSentenc
方法は、音を一文再生し続け、一曲終わるまで5秒間停止することです。
しかし、私はこのアクション以上のような考えはありません。Objective-C のplay
方法は、音楽全体を再生するだけです。
何か考えはありますか?