I fixed it by updating:
UIApplication.shared.sendAction(#selector(UIResponder.selectAll(_:)), to: nil, from: nil, for: nil)
UIApplication.shared.sendAction(#selector(UIResponder.cut(_:)), to: nil, from: nil, for: nil)
into
UIApplication.shared.sendAction(Selector(("selectAll:")), to: nil, from: nil, for: nil)
UIApplication.shared.sendAction(Selector(("cut:")), to: nil, from: nil, for: nil)
I don't know why.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags: