Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
so far, we've created new objects in two different ways. The first way is [SomeClass new], and the second is [[SomeClass alloc] init]. These two techniques are equivalent, but the common Cocoa convention is to use alloc and init rather than new. Typically, Cocoa programmers use new as training wheels until they have enough background to be comfortable with alloc and init. It's time for your training wheels to come off.