일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UICollectionViewFlowLayout
- xcode로 날씨앱 만들기
- addannotation
- 서체관리자
- CoreLocation
- Required Reason API
- MKMapItem
- 클로저의 캡슐화
- 러닝기록앱
- UIAlertAction
- Xcode
- Timer
- dispatchsource
- 영문 개인정보처리방침
- App Store Connect
- weak var
- 단일 책임원칙
- font book
- CLLocationManagerDelegate
- Protocol
- WeatherManager
- Startign Assignments
- MKMapViewDelegate
- 러닝타이머
- swift
- weatherKit
- 한국어 개인정보처리방침
- RunningTimer
- SwiftUI Boolean 값
- AnyObject
- Today
- Total
VesselWheel
반복문 for 변수 in 범...위{} 본문
import UIKit
/*
반복문
for loop
(index 변수)
for loopConstant in Range{
반복할 명령문
}
*/
// 1 2 3 4 5 6 7 8 9 10
for count in 1...10{
print("안녕하세요 -",count)
}
// _ : wildcard pattern
for _ in 1...5{
print("hello, swift5 !!!")
}
// 1 부터 10 까지의 합을 for 문으로 작성하기
let number = 10
var sum = 0
// 1 2 3 4 5 6 7 8 9 10
for num in 1...number{
sum += num
}
print("합계 :", sum)
let end = 10
var result = 1
for _ in 1...end{
result *= 2
}
print("result :",result)
// 0 1 2 3 4 5 6 7 8 9
for num in stride(from: 0, to: 10, by: 2){
print(num)
}
let fruits_list = ["apple", "mango", "strawberry", "watermelon"]
// "apple", "mango", "strawberry", "watermelon"
var count = 0
for fruit in fruits_list{
count += 1
print(fruit,"-",count)
}
'Xcode Study' 카테고리의 다른 글
UIkit 활용 구구단 예제 (0) | 2023.05.02 |
---|---|
반복문(for in) 활용 구구단 만들기 (0) | 2023.05.02 |
Pattern Matching 연산자 overloading (0) | 2023.05.02 |
변수 간 연결(Value binding pattern) (0) | 2023.05.02 |
Guard 문의 개념 (0) | 2023.04.30 |