Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 영화리뷰
- Flutter
- 영화일기
- inflearn
- 리뷰
- 영화
- 자바공부
- 플러터
- 영화기록
- 스프링 입문
- 자바
- java
- 새벽녘 소소한 기록
- 티스토리챌린지
- 백준
- 프로그래머스
- SWIFT
- 자바 스터디
- sopt 35기
- 키노
- 코딩공부
- sopt ios
- Flutter Toy Project
- 일기
- 인프런
- 오블완
- toy project
- 영화후기
- 토이프로젝트
- SOPT
Archives
- Today
- Total
목록[iOS] (5)
새벽의 기록
두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 https://developer.apple.com/documentation/swift/zip(_:_:) zip(_:_:) | Apple Developer DocumentationCreates a sequence of pairs built out of two underlying sequences.developer.apple.com두 개의 시퀀스를 조합하여 새로운 하나의 시퀀스를 생성하는 함수 # case1let words = ["one", "two", "three", "four"]let numbers = 1...4for (word, number) in zip(words, numbers) { print("\(word): \(number)"..
[iOS]
2024. 5. 28. 15:22