This is the output of my string in console.
device type-------------(
mobile,
"<null>",
tablet
How to deal with the 2nd value. I tried the following way, but doesn't work app gets kill here on these lines.
if([dType isEqualToString:@"<null>"])
if([dType isEqualToString:@""])
if([dType isEqualToString:@"null"])
None of the above work. Please guide for the above. Thanks in advance.