목록iOS DEV (5)
BESS(Back-End Study Space)
▶ DEV TOOL - Xcode 12.3 1. Functions and Closures // Functions and Closures // func를 사용해서 함수를 선언 // arguments는 타입 지정 // -> 뒤에는 리턴 타입 명시 // 함수 사용 시에는 파라미터 이름을 명시한 후 작성해야 함!!! func greeting(name: String, greet: String) -> String{ return "Hello \(name), \(greet)" } print("\(greeting(name: "Lee", greet: "Nice to meet you"))") // 단, arguments 작성 시, _ 를 사용하면 함수 호출 시에 인자 레이블을 명시하지 않음 func greeting2(_ n..
2020/12/16 - [iOS DEV/swift] - swift - 2. 문법(조건문) swift - 2. 문법(조건문) 2020/12/15 - [iOS DEV/swift] - swift - 2. 문법(변수,상수,배열,사전) swift - 2. 문법(변수,상수,배열,사전) 2020/12/15 - [iOS DEV/swift] - swift - 1.시작 swift - 1.시작 ▶ DEV TOOL - Xcode 12.2 1. Xcod.. leeezxxswd.tistory.com ▶ DEV TOOL - Xcode 12.2 1. 반복문 (for-in, for, while, repeat-while) // 반복문( for-in, for, while, repeat-while ) // for-in : 배열과 dicti..
2020/12/15 - [iOS DEV/swift] - swift - 2. 문법(변수,상수,배열,사전) swift - 2. 문법(변수,상수,배열,사전) 2020/12/15 - [iOS DEV/swift] - swift - 1.시작 swift - 1.시작 ▶ DEV TOOL - Xcode 12.2 1. Xcode 실행 2. Create a new Xcode project → Other → Empty → Next 3. Product Name → Next → Create 4. 생성.. leeezxxswd.tistory.com ▶ DEV TOOL - Xcode 12.2 1. 조건문 (if-else, if let, switch) // 조건문 ( if, switch ) // 타입 뒤에 물음표를 붙이면 optiona..
2020/12/15 - [iOS DEV/swift] - swift - 1.시작 swift - 1.시작 ▶ DEV TOOL - Xcode 12.2 1. Xcode 실행 2. Create a new Xcode project → Other → Empty → Next 3. Product Name → Next → Create 4. 생성된 playground에서 new File → Black Playground → Next 5... leeezxxswd.tistory.com ▶ DEV TOOL - Xcode 12.2 1. 변수, 상수, 배열(Array), 사전(Dictionary) import UIKit // 변수선언 var : 값 할당 후 변경 가능 // 상수선언 let : 값 한 번만 할당 가능 // 변수와 상수..
▶ DEV TOOL - Xcode 12.2 1. Xcode 실행 2. Create a new Xcode project → Other → Empty → Next 3. Product Name → Next → Create 4. 생성된 playground에서 new File → Black Playground → Next 5. 자동으로 Sources, Resources 폴더가 생성되고, 기본코드가 작성된 MyPlayground.playground 파일이 생성되었다. 6. var str 좌측의 파란색 재생 버튼을 누르면 다음과 같이 전체 화면의 우측 부분에 "Hello, playground"라고 출력되는 것을 볼 수 있다. 7. "Hello, playground"의 우측에 있는 ▣을 누르면, 다음과 같이 코드 아래..