Swift if, if...else Statement

Article by: Manish Methani

Last Updated: October 13, 2021 at 8:04am IST
2 mins 51 sec read

Sometimes in a program we need to test a condition. If that condition is true we perform first action and if the condition is false we perform second action.

Now what does that mean?

1) Simple if Statement

if statement is used to test a given condition. If given condition is satisfied then only block inside if statement will gets executed.

Example :-

import UIKit
var a:Int = 10

if(a == 10)
{
 print("a = (a)")
}

Output :-

a = 10

In this swift program we first initialised a variable "a" with value "10" . Then if condition checks wether 'a == 10' or not . Since value matches block inside if is executed. That's why output 'a = 10' .

Learn to Build 5 Apps Without Coding using FlutterFlow

  • Lifetime access to all the 5 FlutterFlow Courses
  • Complete FlutterFlow training
  • All future course updates
  • Access via Codzify mobile app
  • 24h 42m of Learning Content
  • 5 FlutterFlow Courses at Codzify
  • Access to Dating App Course, Grocery App Course, Courses App Course, FlutterFlow AI Agents Course, Doctor Appointment Booking Supabase Course.
  • Clone Ready-Made Courses App instantly in FlutterFlow.
  • 30-Day 100% Money-Back Guarantee.

Learn More
Codzify Logo

Terms and Conditions    Cookie Policy   Refund Policy   Adsense Disclaimer

Contact: teamcodzify@gmail.com