> On 25 Jun 2015, at 3:50 am, Dave <d...@looktowindward.com> wrote: > > Hi, > > Quick question, does the “super” of NSObject == nil? > > Cheers > Dave
No, because super == self. Perhaps what you mean is, does NSObject have a superclass? No it doesn’t. To verify: Class objSuper = [NSObject superclass]; NSLog(@"superclass of NSObject is %@", NSStringFromClass( objSuper )); I’m curious, how does this question even arise? —Graham _______________________________________________ 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: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com