How to make this complex animation repeat and autoreverse? Is there any way to add options UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat to this animation s
UIImageView *pin = [UIImageView new];
[pin setFrame:CGRectMake(115, 160, 30, 60)];
[pin setBackgroundColor:[UIColor redColor]];
[holderView addSubview:pin];
[UIView animateWithDuration:1.0 delay:0.0 options:UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat
animations:^{
// [pin setTransform:CGAffineTransformMakeTranslation(0, 20)];
[pin setFrame:CGRectMake(115, 200, 60, 100)];
}completion:^(BOOL finished){
}];