1

I encounter UITableViewCellReorderControl color become same as cell color, this symptom confuse me wonder the UITableViewCellReorderControl disappears.

I add background color for UITableViewCellReorderControl to confirm it real exist.

enter image description here

I guess this symptom because the iOS 13 dark mode, but I can't fix it even focus the overrideUserInterfaceStyle to UIUserInterfaceStyleLight.

Is there any idea or experience for it.

Joshpy
  • 560
  • 8
  • 21

1 Answers1

0

Setting overrideUserInterfaceStyle solved my problem.

Note that setting it to UIUserInterfaceStyle.light means light background and dark accessory color.

It seems like in your example UIUserInterfaceStyle.dark would be the correct value.

quinz
  • 1,282
  • 4
  • 21
  • 33