Optimizing iPhone Application Launch Time

后端 未结 4 1438
时光取名叫无心
时光取名叫无心 2021-02-01 21:23

As anyone with an iPhone knows, some applications launch quickly, while others take several seconds.

What are the best techniques for ensuring an iPhone app launches and

4条回答
  •  北海茫月
    2021-02-01 22:14

    Apple recommends you "lazy load" every view. I.e. only load the first page on start up, and other pages only when they are navigated to.

    In terms of graphics, use PNGs wherever possible as the device is heavily optimized for this format.

    Also include the startup screenshot so the user knows the application is loading.

提交回复
热议问题