ios - How to get UITableViewCell subviews in iOS8? -


where can find uitableviewcelleditcontrol inside uitableviewcell. i'm running old code needs ui fix on quick deadline. don't have enough time couldn't find other way.

the app should supporting ios 8.0 , above.

how it?

current code:

for (uiview *subview in [self subviews]) {     if ([subview iskindofclass:nsclassfromstring(@"uitableviewcelleditcontrol")]) {          //this condition never gets true ...     } } 

like above, i'm looking for

  1. uitableviewcellreordercontrol
  2. uitableviewcelldeleteconfirmationcontrol
  3. uitableviewcelldeleteconfirmationcontrol_legacy

update:

found that, shall access & uitableviewcelleditcontrol uitableviewcellreordercontrol when table view in editing mode. don't found uitableviewcelldeleteconfirmationcontrol , uitableviewcelldeleteconfirmationcontrol_legacy.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -