I have UITableView with cells. Cell contains image, label and detail label. Then I’ve got a DetailView, where I load big size of same image which is in cell. And my question is: It’s better to save 2 images (small and big) or resize one? Thx for replays.
I have UITableView with cells. Cell contains image, label and detail label. Then I’ve
Share
Generally, I guess you should use two different images.
When dealing with potentially large lists it is usually a good thing to be quite resource-aware. So if you scroll through the list you might easily have to load 100 images. However the detail view very likely to be shown much less often. So only load a big image if the user really intends to see it.
Since your application runs on a iPhone you also have to consider its ‘limited resources’ and the fact that the user might pay for data transfer.