使用phonegap连续拍摄图像

时间:2012-07-25 08:57:23

标签: iphone ios cordova phonegap-plugins

有没有办法在相机上每秒拍摄一张图像。我正在使用phonegap Camera API来捕获图像并且工作正常。不需要在没有按下捕获按钮的情况下每秒捕获图像。有可能吗?

由于

1 个答案:

答案 0 :(得分:1)

您可以使用 NSTimer

myTimerShoot = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(mySnapshotMethod) userInfo:nil repeats:YES];