gpt4 book ai didi

c# - 在 Xamarin.Forms 页面中隐藏 iPhone X 的主页指示器

转载 作者:行者123 更新时间:2023-11-30 17:27:36 24 4
gpt4 key购买 nike

如何在 Xamarin.Forms 应用程序中隐藏主页指示器?看起来我需要获取 Forms 应用程序的根 UIViewControler 并以某种方式覆盖 PrefersHomeIndicatorAutoHidden返回真实。但是我无权访问那个根 UIViewControler...

您对如何在 Xamarin.Forms 应用程序中隐藏 Home Indicator 有任何想法吗?

最佳答案

我在 InitializeComponent() 之后的 Xamarin.Forms.Page 的构造函数中使用它:

using Xamarin.Essentials;
using Xamarin.Forms.PlatformConfiguration;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
// ...

if (Device.RuntimePlatform == Device.iOS &&
DeviceInfo.Version.Major > 11)
{
On<iOS>().SetPrefersHomeIndicatorAutoHidden(true);
}

基于 this source .

我的用例是在 iOS 模拟器中为 App Store 创建干净的屏幕截图。

关于c# - 在 Xamarin.Forms 页面中隐藏 iPhone X 的主页指示器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54743272/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com