Where can I find UITableViewCellEditControl
inside UITableViewCell
. I'm running too old code that needs some UI fix on a quick deadline. I don't have enough time to do it so as I couldn't find any other way.
The app should be supporting from iOS 8.0 and above.
How do I get it?
Current code:
for (UIView *subview in [self subviews]) {
if ([subview isKindOfClass:NSClassFromString(@"UITableViewCellEditControl")]) {
//this condition will never gets TRUE ...
}
}
Like above, I'm also looking for
UITableViewCellReorderControl
UITableViewCellDeleteConfirmationControl
UITableViewCellDeleteConfirmationControl_Legacy
Update:
Found that, I shall access to & UITableViewCellEditControl
UITableViewCellReorderControl
when table view is in editing mode. Don't found anything about UITableViewCellDeleteConfirmationControl
and UITableViewCellDeleteConfirmationControl_Legacy
.