我已经实现了游戏应用程序,其中我选择了图像的某些部分。现在我想在抖动效果上为图像的选定部分设置动画?是否可能?如果可能,那么如何实现给我一些想法?
答案 0 :(得分:0)
尝试将图像视图置于该部分的上方,捕获其下的图像,然后设置动画效果?一个起点:
CGRect contextRect = CGRectMake(50, 50, 200, 200);// whatever you need
UIGraphicsBeginImageContext(contextRect.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();