我有一个自定义单元格,我想编辑单元格的删除按钮。 我试图使用下一个代码,但if语句永远不会成真。
- (void)willTransitionToState:(UITableViewCellStateMask)state
{
[super willTransitionToState:state];
if ((state & UITableViewCellStateShowingDeleteConfirmationMask) == UITableViewCellStateShowingDeleteConfirmationMask)
{
for (UIView *subview in self.subviews)
{
// the next if statement never goes true
if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellDeleteConfirmationControl"])
{
//... edit the button
}
}
}
}