I get strange memory allocations from the main iOS libraries, which are visible in Allocations tools (Malloc 1.00KB), which are constantly growing and cause application crashes (iPad).
The application allows the user to view articles (body in the web view, title / author / date in labels) - a problem that occurs when each new view controller loads (previous view controllers are freed / freed - this is not a problem).
The following CoreGraphics selections occur only when the .text property is set for UILabel: CoreGraphics " CGGLyphBitmapCreate ", " CGFontSetStrikeValue " - sometimes one or both of them are shown 6 or 7 times (1 KB each), but at least one of each time views loading.
In addition to this, " [NSNotificationCenter addObserver: selector: name: object:] " sometimes appears, sometimes not, sometimes up to 6/7 times on a single load. I understand why adding comments may allocate some memory, but, of course, freeing the view manager with " [NSNotificationCenter removeObserver: self] should remove all links again.
I have included screenshots from the tools ... will not even access the WebCore and libcache.dylib allocations that sometimes appear at boot time. It is very confusing here.


source share