希望通过点击手势更改 UIimageview alpha,例如:
点击 - 将 alpha 更改为 0.5f
再次点击 - alpha 回到 1 状态
可能吗?
是的。
将轻击手势识别器附加到视图:
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(yourFunction:)];
[imageView addGestureRecognizer:tap];
然后在手势识别器的处理程序中:
if (imageView.alpha > 0.5f){
imageView.alpha = 0.5f;
}
else {
imageView.alpha = 1.0;
}