实现的思路,简单来说就是
1.在touchesBegan和touchesMoved中截取整个屏幕生成UIImageA
2.根据touch点的坐标从图片A中截取对应部分生成图片B(使用CGImageCreateWithImageInRect方法)
3.将B放到一个UIImageView展示到keyWindows中,根据touch点的坐标来计算UIImageView显示的位置
4.最后在touchesEnded里面记得隐藏UIImageView。
实现的思路,简单来说就是
1.在touchesBegan和touchesMoved中截取整个屏幕生成UIImageA
2.根据touch点的坐标从图片A中截取对应部分生成图片B(使用CGImageCreateWithImageInRect方法)
3.将B放到一个UIImageView展示到keyWindows中,根据touch点的坐标来计算UIImageView显示的位置
4.最后在touchesEnded里面记得隐藏UIImageView。