Is there any code which can make my app smooth vibrate when i used to press the button. Currently i am using the following methods. Please have a look
-(IBAction)buttonClicked:(UIButton *)sender
{
//AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
AudioServicesPlayAlertSound (1105);
self.view.userInteractionEnabled = NO;
[[HelperClass shared]playSound:@"single_click_12"];
[HelperClass showBounceAnimatedButton:sender completionBlock:^{
self.view.userInteractionEnabled = YES;
selectedIndex =(int) sender.tag;
[self performSelector:@selector(pushTheViewToGame) withObject:nil afterDelay:0.6];
}];
// NSLog(@"Sender Tag :%li",(long)sender.tag);
}