저는 이것을 구현하려했지만 아이폰 앱이 흔들리는 것처럼 코드를 삭제할 수 없었습니다.uiimageview에서 흔들기 애니메이션을 넣는 방법은 무엇입니까?
CABasicAnimation *animation =
[CABasicAnimation animationWithKeyPath:@"position"];
[animation setDuration:0.05];
[animation setRepeatCount:8];
[animation setAutoreverses:YES];
[animation setFromValue:[NSValue valueWithCGPoint:
CGPointMake([lockView center].x - 20.0f, [lockView center].y)]];
[animation setToValue:[NSValue valueWithCGPoint:
CGPointMake([lockView center].x + 20.0f, [lockView center].y)]];
[[lockView layer] addAnimation:animation forKey:@"position"];
이 답변을 참조하십시오, 그것은 당신을 도울 수 있습니다 http://stackoverflow.com/questions/1632364/shake-visual-effect-on-iphone -not-shaking-the-device – pbibergal