the console prints me (null) for an variable that should not be, so I want to put an assert there just for fun:
NSAssert(myVar, @"myVar was (null)!");
what's the trick here? this (null) thing doesn't seem to be "nil", right? How can I check for it? I want to assume that the var is set properly and not nil, not null.