There is no close button on the UIColorPickerViewController(can't exit color picker menu) right now. how can we solve on iOS 17.1
let vc = UIColorPickerViewController()
vc.delegate = self
vc.modalPresentationStyle = .overFullScreen
if let selectedColor = selectedColor {
vc.selectedColor = selectedColor
}
present(vc, animated: true, completion: nil)

I just changed this and solved :