Post

Replies

Boosts

Views

Activity

Reply to Validation failed (-19241) The app contains one or more corrupted binaries. Rebuild the app and resubmit.
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.
Nov ’25