1급 객체(first class object) 1급 시민(first class citizen) Swift는 함수를 데이터 타입처럼 처리할 수 있음 => 함수를 상수 또는 변수에 할당하는 것이 가능 ex) func inchesToFeet (inches: Float) -> Float { return inches * 0.0833333 } func outputConversion(converterFunc: (Float) -> Float, value: Float) { //함수를 매개변수로 사용 let result = converterFunc(value) //주의 : 매개변수명(inches:) 안씀 print("Result = \(result)") } let toFeet = inchesToFeet //함수를변수에 저..
if문 - 스위프트에서는 if 문 다음의 실행 코드가 한 줄이라도 중괄호({})를 필수적으로 사용해야 한다. guard문(조건식이 거짓이면 실행) - guard문은 표현식이 거짓(false)으로 판단될 경우에 수행될 else 절을 반드시 포함해야 함 - else 절에 속한 코드는 현재의 코드 흐름을 빠져 나갈 수 있는 구문(return, break, continue, throw 구문)을 반드시 포함해야 함 - guard문은 기본적으로 특정 조건에 맞지 않을 경우에 현재의 함수나 반복문에서 빠져 나갈 수 있도록 하는 ‘조기 출구(early exit)’ 전략을 제공 - 함수 내부에 있다면 보통 return을 써서 해당 함수를 조기에 빠져나오는 조기 출구 용도로 사용 guard else { // 표현식이 거짓..
옵셔널(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://..
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..
시네머신(Cinemachine) 옵션을 통해 일정거리를 벗어날경우 오브잭트를 따라가는 카메라를 만들수있다. 카메라 제한/그룹 카메라/임펄스를 사용하여 카메라 흔들기 Window => Package Manager => Chinemachine 인스톨 카메라 생성 : Chinemachine => create 2d camera Follow 옵션으로 오브잭트설정 참고 : https://blogs.unity3d.com/kr/2018/07/17/cinemachine-for-2d-tips-and-tricks/ https://aigoia.tistory.com/ 시뮬레이션 게임 개발일지 aigoia.tistory.com 언어 공부용 사이트 http://tcpschool.com/ 코딩교육 티씨피스쿨 4차산업혁명, 코딩교육,..