Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to shake the UIAlertView if user press the submit button without entering the data in the textFields. can it possible in iOS?

enter image description here

share|improve this question
1  
Yes, it is possible. – H2CO3 Oct 31 '12 at 8:18

3 Answers

up vote 2 down vote accepted

Firstly add inside header file add

int direction;
int shakes;

For preventing UIAlertView from dismissing. refer keep-uialertview-displayed link. also refer prevent-alertview-dismissal link.

Use UIAlertView Delegate:

- (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
  if (buttonIndex == 0)
    //do here something
  else if (buttonIndex == 1){
    if(txtField.text.length == 0 || txtField1.text.length == 0) //check your two textflied has value
    {
      direction = 1;
      shakes = 0;
    }
  }
}

Add this method:

-(void)shake:(UIAlertView *)theOneYouWannaShake
{
  [UIView animateWithDuration:0.03 animations:^
                                  {
                                    theOneYouWannaShake.transform = CGAffineTransformMakeTranslation(5*direction, 0);
                                  } 
                                  completion:^(BOOL finished) 
                                  {
                                    if(shakes >= 10)
                                    {
                                      theOneYouWannaShake.transform = CGAffineTransformIdentity;
                                      return;
                                    }
                                    shakes++;
                                    direction = direction * -1;
                                    [self shake:theOneYouWannaShake];
                                  }];
}

Refer more here about animation

share|improve this answer
I like this approach, it's clean. Format a bit better/more consistently your code, though. +1. – H2CO3 Oct 31 '12 at 8:30
thanks very much @H2CO3 – Prince Oct 31 '12 at 8:31
i try this but my Alert shake and then disappear. I dont want it to disappear – JayD Oct 31 '12 at 8:49
check edited answer – Prince Oct 31 '12 at 9:07

ShakingAlertView is a UIAlertView subclass that implements this functionality.

Disclaimer: I am the developer of ShakingAlertView

share|improve this answer
Thats Great, Thanks man – JayD Mar 5 at 11:28

Here the Code Call This Methods As validation Gets Failed

- (void)animateView 
 {
  CAKeyframeAnimation *animation;
        animation = [CAKeyframeAnimation animationWithKeyPath:@"transform.rotation.z"];
        animation.duration = 2.0;
        animation.cumulative = NO;
        animation.repeatCount = MAXFLOAT;
        animation.values = [NSArray arrayWithObjects:
                            [NSNumber numberWithFloat: 0.0], 
                            [NSNumber numberWithFloat: DEGREES_TO_RADIANS(-4.0)], 
                            [NSNumber numberWithFloat: 0.0],
                            [NSNumber numberWithFloat: DEGREES_TO_RADIANS(4.0)],
                            [NSNumber numberWithFloat: 0.0], nil];
        animation.fillMode = kCAFillModeBoth;
        animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
        animation.removedOnCompletion = NO;
        [[alertView layer] addAnimation:animation forKey:@"effect"];

}

    //call this Animation whenever you want to stop animation
  - (void)stopAnimatiomn
   {
     [[alertView layer] removeAnimationForKey:@"effect"];
   }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.