I have been told that UIWebView are big and expensive (memory and computationally) to create and retain. Is this true? and how expensive are they?
A:
It'll depend on what you're loading in them.
The Instruments application's memory and CPU monitors will let you test and find out.
ceejayoz
2009-05-15 01:14:25
A:
Personally, I use one UIWebView in my app (with the singleton pattern), and change its content at each displaying.
I thought that it would take a lot of memory, but in comparison to allocate a few UIImages for instance, it is really nothing (as far as Instruments could tell me).
Unfalkster
2009-06-14 20:46:20