tap gesture recognizer关联到一image view笔记********

本文详细介绍了在XIB中通过拖拽手势识别器到ImageView,并正确设置其交互属性的方法。同时,强调了在不同情况下使用不同语法的重要性,以确保程序的正常运行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

用xib拖拽tap gesture recognizer关联到一image view时;

要打开该image的交互属性;

self.******.userInteractionEnabled = YES;

在xib界面把相关imageview拖到tap gesture recognize关联设置的referencing outlet collections

注意:

如果.h文件中

@property (retain, nonatomic) IBOutlet UIImageView *tapedpic;

而.m文件中

没有

@synthesize tapedpic;属性设置

则该image先关需要写成

self.tapedpic.userInteractionEnabled = YES;

- (void)dealloc {

    [_tapedpic release];

    [super dealloc];

}

如果.m文件中有@synthesize tapedpic;属性设置

则该image先关需要写成

tapedpic.userInteractionEnabled = YES;

- (void)dealloc {

    [tapedpic release];

    [super dealloc];

}

注意区别!!!



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值