In order to compare the string of 2 nodes, the text input is
if ([node.name isEqualToString: otherNode.name]) {
}
I am trying to find something like that except instead of comparing it, I want to find out if the string has a value of NULL.
if ([node.name isEqualToString:NULL]){
}
Any help?