Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个应用程序,学生可以在其中进行在线测试,我想限制他们在 iOS 和 android 上截屏或录制屏幕。到目前为止,我遇到了 android解决方案。我想弄清楚如何在android和iOS中做到这一点。
防止屏幕截图Android可以使用下面的代码。
Android
if (app.android) { const window = app.android.startActivity.getWindow(); window.setFlags(android.view.WindowManager.LayoutParams.FLAG_SECURE, android.view.WindowManager.LayoutParams.FLAG_SECURE); }
但是,我想知道如何在 iOS 上防止屏幕截图,谁能提供更多详细信息。