<bdo id='CqV5Y'></bdo><ul id='CqV5Y'></ul>

    1. <legend id='CqV5Y'><style id='CqV5Y'><dir id='CqV5Y'><q id='CqV5Y'></q></dir></style></legend>

      <small id='CqV5Y'></small><noframes id='CqV5Y'>

    2. <tfoot id='CqV5Y'></tfoot>
      <i id='CqV5Y'><tr id='CqV5Y'><dt id='CqV5Y'><q id='CqV5Y'><span id='CqV5Y'><b id='CqV5Y'><form id='CqV5Y'><ins id='CqV5Y'></ins><ul id='CqV5Y'></ul><sub id='CqV5Y'></sub></form><legend id='CqV5Y'></legend><bdo id='CqV5Y'><pre id='CqV5Y'><center id='CqV5Y'></center></pre></bdo></b><th id='CqV5Y'></th></span></q></dt></tr></i><div id='CqV5Y'><tfoot id='CqV5Y'></tfoot><dl id='CqV5Y'><fieldset id='CqV5Y'></fieldset></dl></div>

      用作自定义 UITableViewCell 的 XIB 中的自定义按钮不响应点击(ios7)

      时间:2023-07-30

        • <tfoot id='JYeSG'></tfoot>
          • <bdo id='JYeSG'></bdo><ul id='JYeSG'></ul>

            1. <legend id='JYeSG'><style id='JYeSG'><dir id='JYeSG'><q id='JYeSG'></q></dir></style></legend>
                  <tbody id='JYeSG'></tbody>

                <small id='JYeSG'></small><noframes id='JYeSG'>

              • <i id='JYeSG'><tr id='JYeSG'><dt id='JYeSG'><q id='JYeSG'><span id='JYeSG'><b id='JYeSG'><form id='JYeSG'><ins id='JYeSG'></ins><ul id='JYeSG'></ul><sub id='JYeSG'></sub></form><legend id='JYeSG'></legend><bdo id='JYeSG'><pre id='JYeSG'><center id='JYeSG'></center></pre></bdo></b><th id='JYeSG'></th></span></q></dt></tr></i><div id='JYeSG'><tfoot id='JYeSG'></tfoot><dl id='JYeSG'><fieldset id='JYeSG'></fieldset></dl></div>
                本文介绍了用作自定义 UITableViewCell 的 XIB 中的自定义按钮不响应点击(ios7)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                所以我在这里将一个正常工作的 ios6 应用程序升级到 ios7,现在我无法在我的 tableviewcells 内的自定义按钮(或其他子视图)上接收点击或其他操作.

                So here I am upgrading a working ios6 app to ios7, and now I can't receive taps or other actions on custom buttons (or other subviews) inside my tableviewcells.

                我的代码:

                这里是我部署 PlaceCell 的地方

                Here is where I deploy my PlaceCell

                - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
                    static NSString *cellIdentifier = @"PlaceCell";
                
                    PlaceCell *cell = [tableView dequeueReusableCellWithIdentifier: cellIdentifier];
                
                    if (!cell) {
                        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"PlaceCell" owner:self options:nil];
                        cell = [nib lastObject];
                        cell.reuseIdentifier = cellIdentifier;
                    }
                    [cell configureCellWithPlace: [self.places objectAtIndex:indexPath.row]];
                    cell.delegate = self;
                    cell.userInteractionEnabled = YES;
                
                    return cell;
                }
                

                然后它是一个带有按钮的普通自定义单元格,这些按钮通过界面连接到一些操作.它在 iOS6 上完美运行,但在 iOS7 上没有任何作用.

                And then it is a normal custom cell with buttons which are connected to some actions by the interface. It works perfectly with iOS6, but it does nothing with iOS7.

                感谢您的帮助.

                推荐答案

                已解决:

                [cell.contentView setUserInteractionEnabled: NO];
                

                这篇关于用作自定义 UITableViewCell 的 XIB 中的自定义按钮不响应点击(ios7)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:UIButton 在 iOS 5 中不调用操作,但在 iOS 6 中有效 下一篇:将 UIButton 带到顶层

                相关文章

              • <small id='Icgrk'></small><noframes id='Icgrk'>

                  <bdo id='Icgrk'></bdo><ul id='Icgrk'></ul>
                <legend id='Icgrk'><style id='Icgrk'><dir id='Icgrk'><q id='Icgrk'></q></dir></style></legend>
              • <tfoot id='Icgrk'></tfoot>
              • <i id='Icgrk'><tr id='Icgrk'><dt id='Icgrk'><q id='Icgrk'><span id='Icgrk'><b id='Icgrk'><form id='Icgrk'><ins id='Icgrk'></ins><ul id='Icgrk'></ul><sub id='Icgrk'></sub></form><legend id='Icgrk'></legend><bdo id='Icgrk'><pre id='Icgrk'><center id='Icgrk'></center></pre></bdo></b><th id='Icgrk'></th></span></q></dt></tr></i><div id='Icgrk'><tfoot id='Icgrk'></tfoot><dl id='Icgrk'><fieldset id='Icgrk'></fieldset></dl></div>