I was using this in my iPhone app

if (title == nil) {
    // do something
}

but it throws some exception, and the console shows that the title is "(null)".

So I'm using this now:

if (title == nil || [title isKindOfClass:[NSNull class]]) {
    //do something
}

What is the difference, and what is the best way to determine whether a string is null?

link|improve this question

66% accept rate
feedback

8 Answers

up vote 75 down vote accepted

As others have pointed out, there are many kinds of "null" under Cocoa/Objective C. But one further thing to note is that [title isKindOfClass:[NSNull class]] is pointlessly complex since [NSNull null] is documented to be a singleton so you can just check for pointer equality. See Topics for Cocoa: Using Null.

So a good test might be:

if (title == (id)[NSNull null] || title.length == 0 ) title = @"Something";

Note how you can use the fact that even if title is nil, title.length will return 0/nil/false, ie 0 in this case, so you do not have to special case it. This is something that people who are new to Objective C have trouble getting used to, especially coming form other languages where messages/method calls to nil crash.

link|improve this answer
Thanks! However I asked this question in the first place because I was getting exception because the "title" null. – Seymour Cakes Jun 10 '09 at 16:04
1  
What type is title supposed to be? If it's an NSString, for instance, I receive the following warning: comparison of distinct Objective-C types 'struct NSNull *' and 'struct NSString *' lacks a cast Is there any way of removing this (I dunno if things have changed since this question was asked)? – thebossman Dec 2 '10 at 1:40
1  
Serves me right for posting code without compiling it ;-). title is presumably an NSString, but regardless of title's type, just cast null to the generic id type: (id)[NSNull null]. – Peter N Lewis Dec 9 '10 at 6:38
feedback

it is just as simple as

if([object length] >0)
{
  // do something
}

remember that in objective C if object is null it returns 0 as the value.

This will get you both a null string and a 0 length string.

link|improve this answer
Excellent, this one does work for me. – Tuyen Nguyen Jan 31 '11 at 15:25
9  
This won't work if object is NSNull, still need to explicitly check that first. – Mutewinter Mar 3 '11 at 14:53
you could also make a category for NSNull to make it return 0 to the length message :) – Mihai Timar Jan 23 at 17:39
feedback

Refer to the following related articles on this site:

I think your error is related to something else as you shouldn't need to do the extra checking.

Also see this related question: http://stackoverflow.com/questions/598396/proper-checking-of-nil-sqlite-text-column

link|improve this answer
Annoyingly I don't have enough "points" to add a second hyperlink (even to something on this site) see also: - stackoverflow.com/questions/598396/… – TimM Jun 9 '09 at 8:28
...allow me. Although you should be able to edit your own posts from rep 0. – Roger Nolan Jun 9 '09 at 9:02
Thanks - that was very kind. When I wrote my initial post it said something like new users can only add 1 hyperlink (which seems a bit harsh - especially for cross links in this site). – TimM Jun 10 '09 at 8:10
feedback

After trying all the stuff mentioned above below solution worked for me

[text isEqualToString:@"(null)"]

Wondering if there is a full proof method

link|improve this answer
2  
All of these attempts and the answer at the bottom with zero points is the one that worked for me. – SixOThree Aug 8 '10 at 23:38
feedback

If you want to test against all nil/empty objects (like empty strings or empty arrays/sets) you can use the following:

static inline BOOL IsEmpty(id object) {
    return object == nil
        || ([object respondsToSelector:@selector(length)]
        && [(NSData *) object length] == 0)
        || ([object respondsToSelector:@selector(count)]
        && [(NSArray *) object count] == 0);
}
link|improve this answer
1  
This does not actually check for object == [NSNull null] which would probably make sense. – Peter N Lewis Jun 10 '09 at 7:36
feedback

Whats with all these "works for me answers" ? We're all coding in the same language and the rules are

  1. Ensure the reference isn't null
  2. Check and make sure the length of the string isn't 0

That is what will work for all. If a given solution only "works for you", its only because your application flow won't allow for a scenario where the reference may be null or the string length to be 0. The proper way to do this is the method that will handle what you want in all cases.

link|improve this answer
feedback

If that kind of thing does not already exist, you can make an NSString category:

@interface NSString (TrucBiduleChoseAdditions)

- (BOOL)isEmpty;

@end

@implementation NSString (TrucBiduleChoseAdditions)

- (BOOL)isEmpty {
    return self == nil || [@"" isEqualToString:self];
}

@end
link|improve this answer
That's probably overkill and I don't think it'll solve this problem. – Roger Nolan Jun 9 '09 at 9:01
1  
The self == nil is pointless - if self was nil, Objective C would not have called you in the first place. [(NSString*)nil isEmpty] would simply return 0/nil/false without ever calling your code. – Peter N Lewis Jun 9 '09 at 14:22
2  
Actually, further to that, [(NSString*)nil isEmpty] will return false. When writing such Objective C methods, it is better to define them so that nil's 0/nil/false makes sense, so writing the method as hasCharacters would be better. Note that length already works for this, as you can use if ( s.length ) anywhere you would want to use if ( !s.isEmpty ) and s.length will correctly return 0 for the s == nil case. – Peter N Lewis Jun 10 '09 at 7:34
feedback

What works for me is .... if ( !myobject )

link|improve this answer
That doesn't work for null objects, only nil objects. For example... NSArray *testarray = [NSArray arrayWithObjects:[NSNull null],@"", nil]; NSString *string = [testarray objectAtIndex:0]; NSLog(@"null string value: %@",string); if (!string) { NSLog(@"string evaluates to null"); } if (string && (string==(id)[NSNull null])) { NSLog(@"string does not evaluate to null"); } – Richard Smith Mar 13 at 22:20
Err.. sorry about the formatting, but the code will compile :) – Richard Smith Mar 13 at 22:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.