// // be.h // // Created by Tyler Neylon on 6/15/09. // Copyright 2009 Bynomial. All rights reserved. // // Add the Be category to NSObject. // The following common pattern: // // SomeObj* obj = [[[SomeObj alloc] initFn] autorelease]; // // can be replaced with: // // SomeObj* obj = [[SomeObj be] initFn]; // #import @interface NSObject (Be) + (id) be; @end