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

      1. <small id='zw6wy'></small><noframes id='zw6wy'>

        <tfoot id='zw6wy'></tfoot>

        自定义 UITableView 中的删除按钮

        时间:2023-07-07

          <legend id='3deGM'><style id='3deGM'><dir id='3deGM'><q id='3deGM'></q></dir></style></legend>

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

                <small id='3deGM'></small><noframes id='3deGM'>

                <tfoot id='3deGM'></tfoot>
                  <tbody id='3deGM'></tbody>
                  本文介绍了自定义 UITableView 中的删除按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有滑动删除"TableViewCell 的功能.我想自定义删除按钮.

                  I have the functionality for "Swipe to delete" the TableViewCell. I want to customize the Delete button.

                  这可能吗?如何访问删除按钮?

                  Is this possible, and how to access the Delete button ?

                  推荐答案

                  当用户执行滑动操作时会调用该方法

                  只需将其放在您的 CustomCell 中

                  - (void)willTransitionToState:(UITableViewCellStateMask)state
                      {
                          [super willTransitionToState:state];
                          if ((state & UITableViewCellStateShowingDeleteConfirmationMask) == UITableViewCellStateShowingDeleteConfirmationMask)
                          {
                              for (UIView *subview in self.subviews)
                              {
                                  if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellDeleteConfirmationControl"])
                                  {
                                      UIImageView *deleteBtn = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 64, 33)];
                                      [deleteBtn setImage:[UIImage imageNamed:@"arrow_left_s11.png"]];
                                      [[subview.subviews objectAtIndex:0] addSubview:deleteBtn];
                                  }
                              }
                          }
                      }
                  

                  你不应该这样尝试,你不应该改变 Apple 的默认视图.

                  这篇关于自定义 UITableView 中的删除按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在两个 PNG 图像之间为 UIButton 设置动画? 下一篇:具有单按和长按事件的 UIButton 快速

                  相关文章

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

                  2. <tfoot id='fMdQG'></tfoot>
                    <legend id='fMdQG'><style id='fMdQG'><dir id='fMdQG'><q id='fMdQG'></q></dir></style></legend>
                      <bdo id='fMdQG'></bdo><ul id='fMdQG'></ul>