Siempre es legal en Swift 4 anidar if-else declaraciones, lo que significa que puede usar una if o else iflado otro if o else if declaración (es).
Sintaxis
La sintaxis de un nested if declaración es la siguiente:
if boolean_expression_1 {
/* Executes when the boolean expression 1 is true */
if boolean_expression_2 {
/* Executes when the boolean expression 2 is true */
}
}
Puedes anidar else if...elsede la misma manera que ha anidado la declaración if .
Ejemplo
var varA:Int = 100;
var varB:Int = 200;
/* Check the boolean condition using if statement */
if varA == 100 {
/* If condition is true then print the following */
print("First condition is satisfied");
if varB == 200 {
/* If condition is true then print the following */
print("Second condition is also satisfied");
}
}
print("Value of variable varA is \(varA)");
print("Value of variable varB is \(varB)");
Cuando se compila y ejecuta el código anterior, produce el siguiente resultado:
First condition is satisfied
Second condition is also satisfied
Value of variable varA is 100
Value of variable varB is 200