0

我有一个 UIButton 并且我已经为它分配了一个 UIImage 。UIButton 在我的 UITableViewCell 上,只有当我点击 UIButton 的左上方时它才会检测到触摸!以前有人遇到过这个问题吗?任何帮助表示赞赏。

这是我的代码:

     UIButton *indicatorlabel =
            [[UIButton alloc]
             initWithFrame:
             CGRectMake(280,20,22,22)];
            indicatorlabel.tag = INDICATOR_LABEL_TAG1;

            UITapGestureRecognizer *tapGesture24449 =[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(labelTapShare:)];
            [indicatorlabel addGestureRecognizer:tapGesture24449];
            [indicatorlabel setTitle:@"shareit" forState:UIControlStateNormal];
            indicatorlabel.showsTouchWhenHighlighted=TRUE;
            indicatorlabel.userInteractionEnabled=TRUE;
 [indicatorlabel setImage:[UIImage imageNamed:@"Share.png" ] forState:UIControlStateNormal];

 [cell.contentView addSubview:indicatorlabel];

没有其他视图覆盖我检查过的 UIButton。

谢谢

4

1 回答 1

0

对不起,我错了,我在同一坐标创建了另一个 UILabel。

于 2012-10-12T15:11:49.203 回答