On Sep 6, 2011, at 3:42 AM, Mike Abdullah wrote: > performSelector really isn't cumbersome at all: > [window performSelector:@selector(setRestorationClass:) withObject:someClass];
Not in this case, but it doesn’t work for methods that take non-object parameters, or more than two parameters. The approach I prefer is to declare the method in a category: @interface NSWindow (StuffAppleAddedIn10_7) - (void) setRestorationClass:(Class)aClass; @end —Jens_______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com