我想从用户触摸屏幕的点开始在UIImageView上创建一个涟漪效果。什么是最好和最简单的方法doinf这。
答案 0 :(得分:1)
请查看此question。
希望有所帮助
答案 1 :(得分:1)
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
NSSet *allTouches = [event allTouches];
UITouch *touch = [[event allTouches] anyObject];
CGPoint lastPoint = [touch locationInView:self.view];
//animation code
}
使用上述方法,您可以在lastPoint上设置UIimageView中心并播放动画代码。 它会工作你想要的。