如何在iOS8中获取UITableViewCell子视图?

时间:2015-10-03 06:30:09

标签: ios objective-c uitableview subviews

我在哪里可以找到UITableViewCellEditControl内的UITableViewCell。我正在运行太旧的代码,需要在快速截止日期前修复一些UI。我没有足够的时间去做,因为我找不到任何其他方式。

该应用应该支持iOS 8.0及更高版本。

我如何得到它?

当前代码:

for (UIView *subview in [self subviews]) {
    if ([subview isKindOfClass:NSClassFromString(@"UITableViewCellEditControl")]) {
         //this condition will never gets TRUE ...
    }
}

如上所述,我也在寻找

  1. UITableViewCellReorderControl
  2. UITableViewCellDeleteConfirmationControl
  3. UITableViewCellDeleteConfirmationControl_Legacy
  4. 更新

    发现,我将访问&表格视图处于编辑模式时UITableViewCellEditControl UITableViewCellReorderControl。找不到关于UITableViewCellDeleteConfirmationControlUITableViewCellDeleteConfirmationControl_Legacy的任何内容。

0 个答案:

没有答案