Best memory allocation strategy for iOS ?
- by Mr.Gando
Hey guys,
I'm debating myself about memory allocation on iOS. I write most of my code in C++ and I really like using ObjectPools, FreeLists, etc. In order to pre-allocate a lot of the stuff that I'll be constantly "alloc/dealloc" during the course of my game, ( like particles, game entities, etc ).
Still on iOS, it's not like we are developing…