How do I test if an NSString is empty in Objective C?
|
feedback
|
|
You can check if | ||||
|
feedback
|
|
Marc's answer is correct. But I'll take this opportunity to include a pointer to Wil Shipley's generalized
| |||||||||||||
feedback
|
|
The first approach is valid, but doesn't work if your string have blank spaces ( This code clear all the blank spaces on both sides of one string:
One good idea is create one macro, so you don't have to type this monster line:
Now you can use:
| |||||||||||||
feedback
|
|
One of the best solution I ever seen (better than Matt G's one) is this improved inline function I picked up on some Git Hub repo (Wil Shipley's one, but I can't find the link) :
| |||||||
feedback
|
|
You should better use this category:
| |||||||||
feedback
|
|
I put this:
The problem is that if self is nil, this function is never called. It'll return false, which is desired. | ||||
|
feedback
|
|
Another option is to check if it is equal to
| |||
|
feedback
|