There are two ways of initializing objects in Objective-C, i.e.:
1) AVCaptureSession *captureSession = [[AVCaptureSession alloc] init];
2) AVCaptureSession *session = [AVCaptureSession new];
Seems like they are doing the same job. What is the difference between them? Or "new" it is just a novelty of iOS5?
Would be grateful for the answer,
Artem