作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
表格 View 单元格内的 ImageView 点击手势不起作用。
以下是代码。
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;
CGRect frame1 = CGRectMake(5, 0, 320, 30);
UILabel *label = [[UILabel alloc] initWithFrame:frame1];
label.text = @"READ THIS";
label.font = [UIFont fontWithName:@"Helvetica" size:15];
cell.backgroundColor = [UIColor colorWithRed:231.0f/255.0f green:234.0f/255.0f blue:235.0f/255.0f alpha:1.0];
UIImageView *downImage =[[UIImageView alloc] initWithFrame:CGRectMake(270,0,35,35)];
downImage.image=[UIImage imageNamed:@"downimg.png"];
downImage.userInteractionEnabled = YES;
downImage.tag = indexPath.row;
UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(myFunction:)];
tapped.numberOfTapsRequired = 1;
[downImage addGestureRecognizer:tapped];
[label addSubview:downImage];
[cell.contentView addSubview:label];
最佳答案
请设置UserInteractionEnabled
至YES
对于UILabel
您要在其上添加 UIImageView
作为 subview
房产 userInteractionEnabled
为 UILabel
禁用默认情况下也是如此。
关于ios uiimagview 点击手势无法识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38158716/
表格 View 单元格内的 ImageView 点击手势不起作用。 以下是代码。 (UITableViewCell *)tableView:(UITableView *)tableView cellF
我无法通过检测 UIImageView 找到最左边的点/帧/位置。我尝试从 UIImageView 中检测黑色像素,如下所示: -(void)Black_findcolor { UIImage
我有这种结合了 UIImageView 的模糊效果。我遇到的问题是当我拍照时模糊效果变得透明并且在渲染之前看起来不一样。为什么会这样? @IBAction func pictureButton(_ s
我是一名优秀的程序员,十分优秀!