0

I want to dismiss system generated alerts. Application developed is enterprise version, so I don't have to worry about Apple review.

I want this to work without jailbreak.

Any help will be appreciated.

Jas_meet
  • 366
  • 1
  • 20

1 Answers1

0

If you're talking about alerts for URL schemes then you can't do anything about them. These alerts are being displayed by the SpringBoard. When you're calling any URL scheme it gets forwarded to the SpringBoard. It parses it and from there does the necessary thing. For phone calls it actually checks that and displays special alert to request permission from user to do the call.

creker
  • 9,400
  • 1
  • 30
  • 47
  • Is there any way using private frameworks to handle this. – Jas_meet Oct 11 '17 at 06:35
  • @Jas_meet, the alert is from a different process. You can't do anything about it. It's like trying to hide UIAlertController being displayed by a different iOS application. But in this case it's not just any application but the SpringBoard itself. – creker Oct 11 '17 at 08:28