我正在尝试编写一个根据振动次数提醒用户的应用。有8种可能的振动...每种都意味着别的东西,它们的形式是1到8次连续振动......
Jist:我需要知道如何连续8次振动手机?
另外:如果它可以 HOLD 振动超过一秒钟而且只需8秒钟,那么我只需要8秒振动,而不是连续8次。< / p>
vibrateCount = vibrateCount +1;
if(vibrateCount <= 5) {
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
}
else {
//vibrated 5 times already kill timer and stop vibrating
[vibrateTimer invalidate];
}
在计时器中 - 但它不起作用。