- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前在我的代码中有这个
tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(updateLeftLabel:)];
调用
- (void)updateLeftLabel:(UIGestureRecognizer*)recognizer
如果方法是这样,我的代码会更简洁
- (void)updateLeftLabel:(UIGestureRecognizer*)recognizer fromData:(EquationData*)data
但是,我需要一种在初始化 UITapGestureRecognizer
时发送“数据”参数的方法
最佳答案
为什么要复杂化???子类 UITapGestureOrganiser 并在新类中使用任意数量的自定义对象。
关于objective-c - 是否可以使用 UITapGestureRecognizer initWithTarget :action: 发送对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9147577/
我正在使用下面的代码 UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:
我目前在我的代码中有这个 tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(updateLeftLa
我正在使用 UITapGestureRecognizer,因为我正在使用一个 UIScrollView 作为我的 UILabel 的容器。基本上我正在尝试使用带有参数的操作方法,这样我就可以,例如将
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(p
我是一名优秀的程序员,十分优秀!