DEVELOPMENT 13

[Swift] 공식 문서 요약 - The Basics_02

본 내용은 Swift 공식 문서에 기반하여 작성되었습니다. https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html Integers [정수] 부분 표현이 아닌 수. 부호가 있거나 (양수, 0, 음수) 없는(양수, 0) 수를 포함 // 부호가 없는 정수 유형 : 8-bit , 부호가 있는 정수 유형 : 32-bit // 각 유형에 별도의 이름이 존재한다 (Int8, Int32 등) let minValue = UInt8.min // minValue is equal to 0, and is of type UInt8 let maxValue = UInt8.max // maxValue is equal to 255, and is of type UInt8 // 각 ..

DEVELOPMENT/iOS AOS 2023.09.13

[Swift] 공식 문서 요약 - The Basics_01

본 내용은 Swift 공식 문서에 기반하여 작성되었습니다. https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html The Basics — The Swift Programming Language (Swift 5.3) The Basics Swift is a new programming language for iOS, macOS, watchOS, and tvOS app development. Nonetheless, many parts of Swift will be familiar from your experience of developing in C and Objective-C. Swift provides its own versions of all fu..

DEVELOPMENT/iOS AOS 2023.09.13

[GitHub] 터미널 명령어 정리

[초기화 / 원격 저장소] // 초기화 git init // 원격 저장소 복제 git clone 원격저장소주소 // 원격 저장소 주소 확인 git remote -v // 원격 저장소 주소 추가(origin 이라는 이름으로 원격 저장소를 추가한다) git remote add 저장소이름 원격저장소주소 // 원격 저장소 이름 변경 git remote rename '기존이름' '변경할이름' // 원격 저장소 삭제 git remote rm 저장소이름 [Branch] // 브랜치 선택하기 git checkout 브랜치명 // 원격 브랜치 선택하기 git checkout -t 저장소이름/브랜치명 // 브랜치 생성하기 git branch 브랜치명 // 원격 브랜치 목록보기 git branch -r // 로컬 브랜치 목..

DEVELOPMENT/ETC 2023.09.13