-
[Swift] Array 로 딕셔너리 만들기Swift 2023. 4. 21. 16:59
import Foundation let array = [1,2,3,4,5,6] let dicionary: [Int: String] = array.reduce(into: [:]) { $0[$1] = "" } print(dicionary)
'Swift' 카테고리의 다른 글
[Swift] URL로 다른 앱 열기 (0) 2023.04.25 [Swift] iOS15 버전에서만 발생하는 이슈 잡기 (0) 2023.04.22 [xcode] xcodeCloud - CICD 연결하기 (0) 2023.03.06 [Xcode] Build Scheme 구분하기 (0) 2023.03.06 [Xcode] Scheme 이름 가지고 오기 (0) 2023.03.06