잡다한지식/iOS프로그래밍기초

잡다한지식/iOS프로그래밍기초

iOS 학습과정(4주차) - Swift 문법

if문 - 스위프트에서는 if 문 다음의 실행 코드가 한 줄이라도 중괄호({})를 필수적으로 사용해야 한다. guard문(조건식이 거짓이면 실행) - guard문은 표현식이 거짓(false)으로 판단될 경우에 수행될 else 절을 반드시 포함해야 함 - else 절에 속한 코드는 현재의 코드 흐름을 빠져 나갈 수 있는 구문(return, break, continue, throw 구문)을 반드시 포함해야 함 - guard문은 기본적으로 특정 조건에 맞지 않을 경우에 현재의 함수나 반복문에서 빠져 나갈 수 있도록 하는 ‘조기 출구(early exit)’ 전략을 제공 - 함수 내부에 있다면 보통 return을 써서 해당 함수를 조기에 빠져나오는 조기 출구 용도로 사용 guard else { // 표현식이 거짓..

잡다한지식/iOS프로그래밍기초

iOS 학습과정(3주차) - Swift 문법

옵셔널(optional) Option type 위키 : https://en.wikipedia.org/wiki/Option_type Option type - Wikipedia For families of option contracts in finance, see Option style. In programming languages (especially functional programming languages) and type theory, an option type or maybe type is a polymorphic type that represents encapsulation of an optional value; e. en.wikipedia.org Nullable type 위키 : https://..

잡다한지식/iOS프로그래밍기초

iOS 학습과정(2주차) - 자료형

Swift 자료 링크 https://docs.swift.org/swift-book/GuidedTour/GuidedTour.html https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html The Basics — The Swift Programming Language (Swift 5.5) 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. S..

잡다한지식/iOS프로그래밍기초

iOS 학습과정(1주차)

1주차 for x in 1...10{ print("\(x)번쨰 반복 201812052김성환") }

감자씨앗
'잡다한지식/iOS프로그래밍기초' 카테고리의 글 목록 (2 Page)