Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

basically, I have an issue with image loading. I am currenly loading about 10-15 images fo 1024 by 768 in a scroll-view. The app sometimes crashes with uiviewcontroller receiving memory warning then a big signal 0. I believe it is being caused by the images. I tried changing the way the images load from using the method: imagenamed to initwithdatacontent but I cannot see any difference. In my instruments the peak never goes beyond 2.5mb and the UIImage objects don't go beyond 1mb so I don't know if it is the images causing it. I believe I should introduce lazy loading which is to i.e only load the previous, current and next image according to the content offset.

Anyone got any idea? Are the images definitely the culprits?

Many thanks.

share|improve this question
Its possible that your images may be causing it, but a better guess would be that you really are leaking somewhere. – Altealice Nov 25 '10 at 10:34
Hi there, I can't see any leaks in instruments via my device. The live memory never goes beyond 2.5mb and if it does, it goes back to that level. – user281300 Nov 25 '10 at 10:35
Based on personal experience, Instruments doesn't always see everything. :( – Altealice Nov 25 '10 at 10:59
Hmm ok lol. Then is there any way to debug this ? I'll try to load less images and c. – user281300 Nov 25 '10 at 11:03
The debugger and console can give you hints. But you may really end up with having to closely inspect your code. – Altealice Nov 25 '10 at 11:27
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.