2

カメラで毎秒画像をキャプチャする方法はありますか。phonegap Camera API を使用して画像をキャプチャし、正常に動作しています。いいえ、キャプチャボタンを押さずに毎秒画像をキャプチャする必要があります。出来ますか?

ありがとう

4

1 に答える 1

1

NSTimerを使用できます:

myTimerShoot = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(mySnapshotMethod) userInfo:nil repeats:YES];
于 2012-11-07T18:54:30.413 に答える