I just found that when UIwebview get dealloc-ed, most of the memory it used doesn't get totally recycled. After doing some profile, i found most of the still alive memory are Font glyph cache(the problem is much worse if you are open a chinese web page, as chinese has more characters, which means more font glyph).

Is there any way we can control the cache ? I'm working on a iOS web browser, this problem blocks me for 2 weeks.

Attached is a simple repro demo. 1) Run the demo with memory "Allocation profile". 2) input http://www.163.com in the address bar and waiting it's finished loading. 3) you can see around 10M memory consumed in the instrument tool. 4) click the clear button(the UIwebview will be removed from the visual tree and get recycled) 5) you can still see around 9M memory alive.

BTW, NSURLCache was disabled with below code, to separate the problem. [[NSURLCache sharedURLCache] setMemoryCapacity:1]

link|improve this question

25% accept rate
I'm trying to investigate how Mobile safari deal with this problem. is there any way i can print import symbol table with otool? otool -ov print all the symbols defined in this application, but i want to know which symbol this app linked from other dynamic library. I use class-dump-z to dump all the header files, but doesn't get any useful information. – jim.huang Feb 23 at 2:53
The actual problem is in draw_glyphs in CoreGraphics, After CGFontCreateGlyphBitmap , the bit map get cached, and no way we can control the cache. it's not a leaking but on iPad1 it's really a problem for my application(With a lot of text) – jim.huang Feb 23 at 13:34
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.