按 uiimageview 时更改图像
Change image when pressing uiimageview
我正在对 ipad 做一个非常简单的记忆游戏。
我想在按下它时更改 uiimageview 上的图像,并在再次按下时将其更改回来。
谢谢你的帮助!
问候
使用点击手势识别器更改图像视图的 image.I 上传我的代码以在图像上点击手势。
注意:不要忘记启用 imageview 的 UserInteraction。
下面的代码写在你的 ViewDidLoad 方法中。
UITapGestureRecognizer *firstdoubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(firstTapGesture:)];
firstdoubleTap.numberOfTapsRequired = 1;
[_firstimageview setUserInteractionEnabled:YES];
[_firstimageview addGestureRecognizer:firstdoubleTap];
比你的操作方法。
- (void)firstTapGesture:(UITapGestureRecognizer*)sender
{
_firstimageview.image=[UIImage imageNamed:@"abcd.png"];
}
我正在对 ipad 做一个非常简单的记忆游戏。 我想在按下它时更改 uiimageview 上的图像,并在再次按下时将其更改回来。 谢谢你的帮助! 问候
使用点击手势识别器更改图像视图的 image.I 上传我的代码以在图像上点击手势。 注意:不要忘记启用 imageview 的 UserInteraction。 下面的代码写在你的 ViewDidLoad 方法中。
UITapGestureRecognizer *firstdoubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(firstTapGesture:)];
firstdoubleTap.numberOfTapsRequired = 1;
[_firstimageview setUserInteractionEnabled:YES];
[_firstimageview addGestureRecognizer:firstdoubleTap];
比你的操作方法。
- (void)firstTapGesture:(UITapGestureRecognizer*)sender
{
_firstimageview.image=[UIImage imageNamed:@"abcd.png"];
}