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可以吗?
在我的应用程序中,如果用户空闲 1 分钟,我想锁定设备。这就是场景。
谢谢吉腾
您可以使用以下代码锁定手机
[UIApplication sharedApplication].idleTimerDisabled = YES;
您可以通过在 Appdelegate 的窗口上添加块视图来锁定您自己的应用程序。但是锁定您的设备是操作系统的责任。我认为如果你以某种方式实现这一点,那么仍然 aplle 可能会拒绝你的应用程序。