I am a beginner of Objective C. I know java programming and in the intro level course, memory release is not covered (and I don't know whether there is one in a more advanced level course or java complier handles this). However, even at the intro level I need to manually release memory for Objective C program. I know it's a good habit to do this but just how important is it? Especially if I want to develop iPhone apps, is memory release very urgent (and not doing this will result in significant slowing of processing)? By iPhone apps, I am not talking about big 3D games with fantastic visual effects, high-quality sound effects, and other stuff that may make memory release important. I just want to develop some small tools such as calculator, reminder, or diary book. So how important is memory release?
I think memory release was important in old days, when C language program was run on super old computers which might not have too much memory and processing speed. But considering iPhone is a pretty advanced device, is manual memory release a little bit out-dated?