𝗔𝗣𝗣𝗟𝗘/SWIFT : GRAMMAR
2024. 2. 13.
SWIFT 기초 문법(01) 조건문, foreach 반복문, enum, For 반복문
조건문 var isDarkMode: Bool = false if isDarkMode { print("다크모드 입니다.") } else { print("다크모드가 아닙니다.") } // 삼항 연산자를 활용한 더 간단한 표현 var title: String = isDarkMode ? "다크모드 입니다." : "다크모드가 아닙니다." print("title: \(title)") 반복문 var myArray: [Int] = [0, 1, 2, 3, 4, 5] // 기본적인 반복문 for item in myArray { print("item: \(item)") } // 조건을 추가한 반복문 for item in myArray where item > 3 { print("3보다 큰 item: \(item)") } //..