如何为图像的选定部分设置动画

时间:2009-12-11 11:38:29

标签: iphone

我已经实现了游戏应用程序,其中我选择了图像的某些部分。现在我想在抖动效果上为图像的选定部分设置动画?是否可能?如果可能,那么如何实现给我一些想法?

1 个答案:

答案 0 :(得分:0)

尝试将图像视图置于该部分的上方,捕获其下的图像,然后设置动画效果?一个起点:

    CGRect contextRect  = CGRectMake(50, 50, 200, 200);// whatever you need
    UIGraphicsBeginImageContext(contextRect.size);  

    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

来自http://www.iphonedevsdk.com/forum/iphone-sdk-development/2353-possible-make-screenshot-programmatically-2.html