I was using this in my iPhone app
if (title == nil) { // do something }
but it throws some exception, and the console shows that the ti
Try this for check null
if (text == nil)
if ([linkedStr isEqual:(id)[NSNull null]]) { _linkedinLbl.text=@"No"; }else{ _linkedinLbl.text=@"Yes"; }