Still plowing through my Obj-C book and coming across 'Factory Methods' it made me wonder for sec about the init method.
If you do say '[SomeClass new]', does it called the 'init' method automatically or is it a replacement for using 'new'.
Such as '[SomeClass init]' instead of, 'new' ?