epreston / PSTreeGraph

A tree graph view control for iPad applications. This is a port of the sample code from Max OS X to iOS (iPad).
http://epreston.github.io/PSTreeGraph/
259 stars 50 forks source link

Adopt the @autoreleasepool language extension #10

Closed epreston closed 12 years ago

epreston commented 12 years ago

Replace the NSAutoreleasePool wrapper object usage with the new direct language construct. An example is found below.

    @autoreleasepool {
        // code for nested auto-release pool here
    }

This syntax requires Xcode 4.2

epreston commented 12 years ago

This language construct was adopted in the main.m file and in the control. It is likely that this change will help to future proof the code as the old wrapper object is retired.