Swift wenn ... sonst Aussage

if (condition) {
  // block of code if condition is true
}
else {
  // block of code if condition is false
}
SAMER SAEID