A if declaração pode ser seguida por um opcional else instrução, que é executada quando a expressão booleana é falsa.
Sintaxe
A sintaxe de um if...else declaração em Swift 4 é a seguinte -
if boolean_expression {
/* statement(s) will execute if the boolean expression is true */
} else {
/* statement(s) will execute if the boolean expression is false */
}
Se a expressão booleana for avaliada como true, então o if block do código será executado, caso contrário else block de código será executado.
Exemplo
var varA:Int = 100;
/* Check the boolean condition using if statement */
if varA < 20 {
/* If condition is true then print the following */
print("varA is less than 20");
} else {
/* If condition is false then print the following */
print("varA is not less than 20");
}
print("Value of variable varA is \(varA)");
Quando o código acima é compilado e executado, ele produz o seguinte resultado -
varA is not less than 20
Value of variable varA is 100