Hi everybody !
I have a NSData : attachment, I have to check if his value is NULL.
When I done :
Code:
NSLog(@"%@", attachment)
I have :
I tried :
Code:
if( (NSNull*) attachment == [NSNull null]) {
...
}
but it doesn't work. How can I check if my value is null ?