Apple Watch 上的 EnableWaterLock 已弃用是否有其他方法可以锁定手表的屏幕?

EnableWaterLock on Apple Watch deprecated are there any alternatives to lock the screen of the watch?

我刚刚看到 WKExtension.shared.EnableWaterLock 现已弃用。我在我的锻炼应用程序中使用了这种方法,以防止意外点击屏幕和结束锻炼等。它是否已被任何其他锁定屏幕的方法所取代?

该方法并未从 WatchKit 中删除,只是在 watchOS 6.1 中从 WKExtension 移至 WKInterfaceDevice。 参见 WKInterfaceDevice.enableWaterLock()

您可以使用 WKInterfaceDevice.current().enableWaterLock() 来调用它。