Scroll view and table view performance when loading images from disk

后端 未结 5 1492
说谎
说谎 2021-02-04 18:50

I\'m trying to improve the performance of my image-intensive iPhone app by using a disk-based image cache instead of going over the network. I\'ve modeled my image cache after S

5条回答
  •  孤街浪徒
    2021-02-04 19:31

    The image from the disk is actually read while drawing the image on the imageview. Even if we cache the image reading from the disk it does not affect since it just keeps reference to the file. You might have to use tiling of larger images for this purpose.

    Regards, Deepa

提交回复
热议问题