我在哪里可以找到UITableViewCellEditControl
内的UITableViewCell
。我正在运行太旧的代码,需要在快速截止日期前修复一些UI。我没有足够的时间去做,因为我找不到任何其他方式。
该应用应该支持iOS 8.0及更高版本。
我如何得到它?
当前代码:
for (UIView *subview in [self subviews]) {
if ([subview isKindOfClass:NSClassFromString(@"UITableViewCellEditControl")]) {
//this condition will never gets TRUE ...
}
}
如上所述,我也在寻找
UITableViewCellReorderControl
UITableViewCellDeleteConfirmationControl
UITableViewCellDeleteConfirmationControl_Legacy
更新:
发现,我将访问&表格视图处于编辑模式时UITableViewCellEditControl
UITableViewCellReorderControl
。找不到关于UITableViewCellDeleteConfirmationControl
和UITableViewCellDeleteConfirmationControl_Legacy
的任何内容。