Can any help me.. is it possible to change the default swipe delete button frame and color.. i am new to iPhone...
if ([NSStringFromClass([subview class])isEqualToString:@"UITableViewCellDeleteConfirmationControl"])
{
UIView *deleteButtonView = (UIView *)[subview.subviews objectAtIndex:0];
CGRect f = deleteButtonView.frame;
deleteButtonView.frame = f;
}
i am using this piece of code but not working...