Got a tip for us? Share it...

Apple Releases Xcode 4.2

In support of today's extensive list of software releases, Apple has also pushed out the final public version of Xcode 4.2, now available through Apple's developer channel and on the Mac App Store. Xcode is Apple's package of developer tools for creating both OS X and iOS applications.

What's New in Version 4.2
- Includes SDKs for Mac OS X 10.7 Lion and iOS 5
- Storyboards let you design multiple iOS screens, and define the segues among them
- Automatic Reference Counting (ARC) saves you from manually managing retain/release
- iCloud entitlements are automatically enabled for Mac and iOS apps
- OpenGL ES Debugger graphically analyzes your OpenGL scene directly within the IDE
- Apple LLVM compiler supports C++11 features and the LLVM libc++ standard library
- Older iOS Simulators and device debugging symbols are downloaded on-demand

Xcode 4.2 requires OS X Lion and is a free download on the Mac App Store.

Top Rated Comments

(View all)

8 months ago

Is this similar to Garbage Collection?


It's better than garbage collection. GC is run-time technology and can have a dramatic negative effect on performance. Furthermore, the performance cannot be relied upon to be constant (CPU usage can spike when the GC is sweeping), and since you don't know beforehand when the GC is doing its business, bugs can be harder to track down (objects may disappear at unknowable times).

ARC is a compile-time technology. It inserts retain, release, and autorelease messages just as you would, then optimizes out redundancies before the binary is built. It simply uses the same well-defined memory management rules that you would except it doesn't make mistakes as a human can. There is no run-time penalty.

The biggest disadvantage for ARC is it can't detect cyclical references like a GC can, and that's why it includes the __weak type identifier. So you need to be a little careful for those situations, but overall it's a better technology than GC, which is why GC in Xcode will be going away in favor of ARC, at some point.
Rating: 2 Positives / 0 Negatives
8 months ago
ARC here I come! Good riddance manual memory management (for the most part)!
Rating: 3 Positives / 1 Negatives
8 months ago

+1. I

Rating: 1 Positives / 0 Negatives
8 months ago

just tried. seems the answer is no.


Damn, thanks for checking

*rages* :mad:
Rating: 1 Positives / 0 Negatives
8 months ago

Should I continue to download from the Dev Center or grab the App Store version?


I'm not sure if the Lion version is available on on the dev center. I downloaded it from the App Store and it went along fine. My coworker is downloading the SL one from the dev center and it's taking forever.
Rating: 1 Positives / 0 Negatives
8 months ago
Yes, ARC with Xcode 4.2 is HUGE for developers. If you are an iOS developer, look into ARC! It will save you from so many headaches from now on.

Yes, iOS 5.0 or greater is required for your binaries to use it.
Rating: 1 Positives / 0 Negatives
8 months ago
So will this version allow the 'developer' gestures to be enabled on the iPad 1 under iOS5 like they were in iOS4.3?
Rating: 1 Positives / 0 Negatives
8 months ago
Still downloading, but does anyone know if this still includes the 10.6 SDK?

Edit: it does.
Rating: 0 Positives / 0 Negatives
8 months ago
Let's get CODING!
Rating: 0 Positives / 0 Negatives
8 months ago

ARC here I come! Good riddance manual memory management (for the most part)!


But can you even use that when building for lower iOS platforms?

I always thought ARC was iOS 5.0 only and thus I hadn't really looked into it.
Rating: 0 Positives / 0 Negatives

[ Read All Comments ]