swift 문법 기초 1/7
코드 출처 - iOS 프로그래밍을 위한 Swift 기초 강의 1. 이름짓기 규칙 Camel Case: 낙타의 등 모양 같은 표기법 Lower Camel Case: function, method, variable, constant, ... ex) someVariableName Upper Camel Case: types, class, struct, enum, extension, ... ex) Person, Point, Week 대소문자를 구분한다. 2. 콘솔로그와 문자열 보간법 콘솔로그: console log. 디버깅 중 디버깅 콘솔에 보여줄 로그. Swift에서는 print()와 dump() 함수를 사용해 출력한다. print(): 단순 문자열 출력 dump(): 인스턴스의 자세한 설명까지 출력 문자열 보..
2021. 8. 23.