Re: Optimizing, uiview caching, and clearing that cached view.

2009-03-02 Thread David Duncan
On Feb 28, 2009, at 8:16 AM, James Cicenia wrote: How do I skip over my populating code in ViewWillAppear to increase the response time of my app? I'm guessing your doing what should be one-time creation of content for that view. If so, you should do this inside of -viewDidLoad rather

Optimizing, uiview caching, and clearing that cached view.

2009-02-28 Thread James Cicenia
Hello - I just noticed that my app's view controller is not clearing out the view and so if i make a selection somewhere else, the new data is being populated over the old data and showing up in the view. This could actually be good because it could increase the performance of my app...