Re: Is UITableView more memory efficient than UIScrollView?

2009-03-09 Thread James Cicenia
I have a listing of approximately 100 lines. Within each line I create a visual calendar that has up 24 images. These images are tiny. However, I have proved to myself that it is a memory issue and calling didRecieveMemory warning. This view has two tabs on top which allows you to switch betw

Re: Is UITableView more memory efficient than UIScrollView?

2009-03-09 Thread Mike Abdullah
Well it rather depends what you ask UIScrollView to do for you… The most important thing is to recycle or dispose of views that are no longer visible to the user. Care to explain more what your code is actually doing? Mike. On 9 Mar 2009, at 22:27, James Cicenia wrote: I am trying to get

Is UITableView more memory efficient than UIScrollView?

2009-03-09 Thread James Cicenia
I am trying to get my one screen to work and I feel I am having a memory issue that just causes my application to reboot. Even though UITableView subclasses UIScrollView I was wondering if it pages memory or such and would be better for my app. Thanks James Cicenia