如何从iOS转换仅兼容macOS的 Application.app?



亲爱的伙计们,我想在我的Mac上安装iOS应用程序。我已经在查找器的"applicationonios.app"上安装了它。当我打开它时,Mac说"你有macOS 10.14.4。应用程序需要 macOS 11.0 或更高版本。(当然,这是一个与iOS兼容的应用程序(。现在我想在我的Mac上打开那个.app应用程序。我该怎么办?

我试图通过编辑上面的"info.plist"来编辑版本检查。但是在我这样做之后,它说"对不起,此应用程序与这种Mac不兼容"。我已经尝试了对代码进行版本检查,但似乎我编辑了不正确的"info.plist"。之后,我查看了其他info.plist,似乎我应该编辑那个。

如何更改和操作 iOS 应用程序的兼容性,以便我可以在 Mac 上运行 iOS 应用程序?

<key>UIRequiresFullScreen</key>
<true/>
<key>CFBundleName</key>
<string>appname</string>
<key>DTSDKName</key>
<string>MacOS10.0</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Your selected photo will be uploaded upon creating a post, but you may choose not to allow us to access it.</string>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>

您无法直接在 Mac 上运行 iOS 应用。您必须制作该应用程序的Mac版本。

Apple 在 macOS 10.15 中添加了 Catalyst 框架,让开发人员将他们的 iPad 应用程序转换为 Mac。

最新更新