0

I want to avoid taking a screenshot of one particular form for iOS. On Android I found a way to avoid this but for iOS it seems this is an OS function which can't be used. Does anyone have experiences with this in Delphi or have found a way that works?

Chris
  • 57
  • 8
  • What does that even mean? Do you want to prevent the user from taking a screenshot of a particular form? Maybe once you get the wording straight, you'll get proper Google results. – Sherlock70 Apr 28 '22 at 13:10
  • Yes, I want to prevent the user from taking a screenshot of a particular form. – Chris Apr 29 '22 at 09:32

1 Answers1

0

It is always helpful to look around what developers using swift are writing on such topics:

You can see in this question, it is also tricky in swift to do this. You could try catching the interruption of the touchscreen like suggested in this question. You would have to do some research on how to catch iOS events for this.

Max
  • 41
  • 7