Can I simply use
if(myString == nil)
For some reason a string that I know is null, is failing this statement.
|
Can I simply use
For some reason a string that I know is null, is failing this statement. |
|||
|
|
Is it possible that your string is not in fact |
|||||
|
|
You can find more on objective C string here.
|
|||
|
|
|
It seems that my string in the debugger was reporting as (null) but that was due to how it was being assigned, I fixed it and now it is reporting as nil. This fixed my issue. Thanks! |
|||
|
|
|
you may check your getting string using this
|
|||
|
|
|
Please notice: Length = 0 dosen't mean it's nil NSString *test1 = @""; NSString *test2 = nil; They are not the same. Although the length is 0. |
|||
|
|
|
That was my thought at first, but indeed it is reporting to null. See the following screenshot: http://screencast.com/t/6hQzWmPm62 |
|||