Apple Pay 钱包屏幕 (PKAddPaymentPassViewController) 在我的应用程序中无法正常显示

Apple Pay wallet screen (PKAddPaymentPassViewController) is not coming properly in my application

我正在我的应用程序中实施应用程序内卡配置。 UI 出现不正常,它进入了像这样的缩放状态 谁能告诉我如何解决这个问题。

使用下面的代码和 requestConfiguration 数据来呈现此 PKPaymentPassViewController。同样在我创建一个新项目的演示应用程序中工作正常。我的应用程序不完全 UI 兼容 iPhone 6 及更高版本是问题所在吗?

PKAddPaymentPassViewController *vc = [[PKAddPaymentPassViewController alloc] initWithRequestConfiguration:request delegate:self];
    vc.delegate = self;
    [self presentViewController:vc animated:YES completion:nil];

问题已解决这是由于状态栏。在我的应用程序中没有使用状态栏。

为了解决这个问题,我在调用钱包时取消隐藏状态栏,并在我从钱包返回我的应用程序时隐藏状态栏。