如何使用 Windows 在真正的 ios 设备上获取 Flutter 应用程序 运行?

How to get Flutter Application running on real ios device with Windows?

有没有办法在自己的 ios 设备上 Windows 获得 Flutter 应用程序 运行 而无需付费?

不,不可能到运行Windows上的iOS模拟器。

这样做的原因是the following(突出显示是我的):

Simulator allows you to rapidly prototype and test builds of your app during the development process. Installed as part of the Xcode tools [...]

这意味着 iOS 模拟器仅随 Xcode 一起提供。 Xcode 仅在 MacOS.
上可用 这意味着您需要自己 运行 MacOS 或使用 运行 在 MacOS 上为您提供应用程序的服务。

另请参阅:


对于 Flutter 这意味着您必须在 Android、桌面或 Web 上本地测试您的代码。您仍然可以在您的 CI 中 运行 一个 iOS 模拟器,或者做一些类似于上面链接的答案中描述的事情。