일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- CLLocationManagerDelegate
- Required Reason API
- WeatherManager
- addannotation
- 서체관리자
- Protocol
- 영문 개인정보처리방침
- dispatchsource
- CoreLocation
- font book
- RunningTimer
- weatherKit
- Xcode
- weak var
- swift
- 러닝기록앱
- UIAlertAction
- SwiftUI Boolean 값
- UICollectionViewFlowLayout
- AnyObject
- Startign Assignments
- Timer
- MKMapItem
- App Store Connect
- xcode로 날씨앱 만들기
- 단일 책임원칙
- 러닝타이머
- 한국어 개인정보처리방침
- 클로저의 캡슐화
- MKMapViewDelegate
Archives
- Today
- Total
VesselWheel
[SwiftUI] 제어문(Control Statement), 조건문(if/switch), 반복문(for in a...b / while) 본문
Xcode Study
[SwiftUI] 제어문(Control Statement), 조건문(if/switch), 반복문(for in a...b / while)
JasonYang 2023. 4. 26. 20:10import UIKit
/*
제어문 : Control Statement
조건문 - if /switch
반복문 - for-in / while
- 조건이 하나인 if 문
if 조건문 {
실행문..
}
- 조건이 두 개인 if 문
if 조건문 {
실행문..
}else{
실행문...
}
- 조건이 여러 개인 if 문
if 조건문 {
실행문..
}else if 조건문{
실행문...
}else if 조건문{
실행문...
}else if 조건문{
실행문...
}else{
실행문...
}
*/
let id = "tjoeun"
let pw = "1234joeun"
if id == "tjoeun"{
print("유효한 아이디입니다")
}
if pw == "1234joeun"{
print("유효한 비밀번호입니다")
}
if id == "tjoeun" && pw == "1234joeun"{
print("로그인 성공 !!!")
}else{
print("로그인 실패")
}
// if 문 속에 if 문 작성하기
// 외부 if 문과 내부 if 문은 && 조건으로 연결됨
if id == "tjoeun"{
if pw == "1234joeun"{
print("로그인 성공 !!!")
}else{
print("비밀번호가 안 맞습니다")
}
}else{
print("아이디가 안 맞습니다")
}
'Xcode Study' 카테고리의 다른 글
[SwiftUI]switch 문의 개념 (0) | 2023.04.26 |
---|---|
[SwiftUI]if 문의 개념 (0) | 2023.04.26 |
[SwiftUI] 사용자 정의 연산자(Custom Operators) (0) | 2023.04.26 |
[SwiftUI] 구조체 연산자 (0) | 2023.04.26 |
[SwiftUI] 범위연산자(Range Operator) (0) | 2023.04.25 |