Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将应用程序构建到设备时是否可以下载一些资源?我不想在第一次运行它时这样做,因为那时互联网可能不可用。相反,我想在从应用商店下载应用程序本身时或在完成下载后立即下载这些资源。
这是不可能的。您的应用程序只能在运行时执行任何操作,因此您必须等待第一次运行。正如 NikosM 所问的,为什么不把信息放在你的 app bundle 中呢?
许多应用程序依赖于一些附加信息数据库,直到应用程序第一次运行时才下载这些信息。为什么不这样做 - 让您的应用程序在运行时自行下载信息,然后将其放在可以获取的地方?这是一个非常常见的策略。