摘要:
Scale:拉伸图片,图片变形。 Aspect:图片长宽的保持比例,图片不变形。 Aspect Fill(常用):图像充满容器。以长宽中小的参数为限制。 Aspect Fit:图像在容器中完整显示。以长宽中大的参数为限制。 Scale To Fill: 缩放图片,使图片充满容器。图片未必保持长宽比例 阅读全文
摘要:
image.userInteractionEnabled = YES; UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(imagePressed:)]; [image addGestureRecognizer:tap]; 阅读全文