It seems to be
if(myObj == (typeOfMyObj *) kCFNull){
//myObj is null
}
and
if(myObj == (typeOfMyObj *) [NSNull null]){
//myObj is null
}
produce the same result.
Is this always the case? I'm developing an iOS 5 application.
Thanks!
|
|
|
It appears none of Apple's docs state that There's probably a way for your code to avoid depending on |
|||||||
|
|
I agree with Jeremy, If you wanted to be 100% safe, the best bet would be to check the class using isKindOfClass: ie:
or
Then you're safe against any future changes, though it's super tedious and the slowest of all proposed approaches :P It's not out of the question that one day
but
or even
Though these are the sorts of concerns that cause most Obj-C devs to spend more time jumping through hoops than writing code :P |
|||
|
|