Comment vérifier l'objet est nil dans Swift

if let variableName = abc { // If casting, use, eg, if let var = abc as? NSString
    // variableName will be abc, unwrapped
} else {
    // abc is nil
}
Mobile Star