How to reduce the size of my iPhone application?

前端 未结 7 779
天涯浪人
天涯浪人 2020-11-28 02:49

Alternative Titles (to aid searches)

Compressing PNGs

Reduce the size of an iPhone Archive (.ipa)

Adding a build rule to compress images i

7条回答
  •  日久生厌
    2020-11-28 03:34

    I have reduce an iOS app from 90MB to 50MB in the last few monthes. Here are some tips and tools:

    To Profile iOS App Size

    1. unzip your ipa to check resources like video, font and images files.

    2. Profile your binary file by library and object files(classes) using Linkmap file and XCode Linkmap Parser.

    To Reduce Image Files

    • use ImageOptim-CLI to automatic the image compress process
    • use Unused-image to find unused image files

    To Reduce Binary File

    • Strip debug symbols
    • Find unused imports using fui

提交回复
热议问题