好久不更博文了,是因为博主最近去给自己充电了哈哈。今天聊一聊如何实现手势缩放的简单效果
为了实现这个效果,我们需要重写UIImageView,同时因为放大的图片超出了屏幕的显示范围,我们还需要添加ScrollView
-(instancetype)initWithFrame:(CGRect)frame
{
//1.初始化,添加手势
self = [super initWithFrame:frame];
if(self)
{
self.userInteractionEnabled = YES;
self.contentMode =UIViewContentModeScaleAspectFit;
_totalScale = 1.0;
// 捏合手势缩放图片
UIPinchGestureRecognizer *pinch = [[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(zoomImage:)];
[self addGestureRecognizer:pinch];
}
//2.创建大图scrollview
if(self.image.size.height>self.bounds.size.height)
{
if(!_scrol)
{
_scrol = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
[self addSubview:_scrol];
_scrolImageview = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, _scrol.bounds.size.w

本文介绍了如何在iOS应用中利用手势实现图片的缩放功能,通过重写UIImageView并在需要时添加ScrollView来处理超出屏幕显示范围的情况。
2009

被折叠的 条评论
为什么被折叠?



