É sempre legal no Swift 4 aninhar if-else declarações, o que significa que você pode usar uma if ou else iflado outro if ou else if afirmações).
Sintaxe
A sintaxe para um nested if declaração é a seguinte -
if boolean_expression_1 {
/* Executes when the boolean expression 1 is true */
if boolean_expression_2 {
/* Executes when the boolean expression 2 is true */
}
}
Você pode aninhar else if...elseda mesma forma que você aninhou a instrução if .
Exemplo
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)");
Quando o código acima é compilado e executado, ele produz o seguinte resultado -
First condition is satisfied
Second condition is also satisfied
Value of variable varA is 100
Value of variable varB is 200