Description
When rendering the TMTicketsViewController in a fullscreen modal on an iOS 26.x device, the dismiss button in the top left corner is dead on tap. The swift package version I am using is v1.20.0.
However, this same button dismisses the modal as expected with iOS 18.
Here is the code to render the view controller:
let vc = TMTicketsViewController()
vc.modalPresentationStyle = .fullScreen
present(vc, animated: true, completion: nil)
Description
When rendering the TMTicketsViewController in a fullscreen modal on an iOS 26.x device, the dismiss button in the top left corner is dead on tap. The swift package version I am using is v1.20.0.
However, this same button dismisses the modal as expected with iOS 18.
Here is the code to render the view controller:
let vc = TMTicketsViewController()vc.modalPresentationStyle = .fullScreenpresent(vc, animated: true, completion: nil)