views:

168

answers:

2

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
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