일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- coding
- Playground
- 구글이 좋아하는 강한 SEO 작성 방법
- Swift
- SwiftUI
- crank up and down
- 해당 비즈니스 및 사이트명을 포함할 수 있도록 페이지 텍스트를 편집하세요 - wix.com
- Polite
- 코딩
- BASIC
- Playgrounds
- 인앱 결제
- Uniting Worlds
- Grammarly
- allege
- 맥
- 2대 연결
- collect the total
- Learning
- obliged
- Connect and Solve
- Generalizing a Funcetion
- Making Your Own Portals
- 컴터 연결
- 기초
- 신세지다
- 렛츠톡 첫 화면
- feel torn
- 코린이
- progamming
- Today
- Total
목록Learn to Code (9)
IT
보호되어 있는 글입니다.

#Moving Further Forward let expert = Expert() func move(distance: Int) { for i in 1 ... distance { expert.moveForward() } move(distance: 6) expert.turnRight() move(distance: 2) expert.turnRight() move(distance: 5) expert.turnLeft() move(distance: 5) expert.turnLeft() expert.turnLockUp() expert.turnLeft() move(distance: 3) expert.turnRight() move(distance: 3) expert.turnRight() move(distance: 4) ..

Initializing your Expert let expert = Expert() func expertMovethree() { expert.moveForward() expert.moveForward() expert.moveForward() } func expertTurnAround() { expert.turnLeft() expert.turnLeft() } expert.moveForward() expert.moveForward() expert.moveForward() expert.turnLockUp() expertTurnAround() expertMovethree() expert.turnLeft() for i in 1 ... 3 { expertMovethree() expert.collectGem() ex..

if you want to build a house, you use a blueprint. A blueprint shows the features of your house, such as the kitchen, bathrooms, and bedrooms. When you use a blueprint to build multiple houses, you know that the houses will look similar. In programming, a type is like a blueprint, and an instance is like a house that you built from the blueprint. In a type, features are called properties, and be..

Now I take one more step. This is the first question var gemCounter = 1 moveForward() moveForward() collectGem() gemCounter = 1 comment) I can set a var statement in this way quest 2 = incrementing variable this means increasing var. var gemCounter = 0 while !isBlocked { while !isBlocked { if isOnGem { collectGem() gemCounter = gemCounter + 1 } moveForward() } turnRight() } comment) 큰 범위(while)에..
How-To : "이 애플 ID로 업데이트할 수 없음" 오류 메시지 대처법 맥 앱스토어는 유/무료로 다운로드한 애플리케이션을 받을 때, 그 스토어와 연동된 애플 ID에 앱을 등록한다. 보통 사용자들은 하나의 애플 ID만 사용하기 때문에 맥에 설치된 모든 앱이 하나의 애플 ID에 속하므로 별 문제가 없다. 그러나 애플 ID를 하나만 쓰더라도 “이 애플 ID로 업데이트할 수 없음”이라는 메시지가 업데이트나 갱신할 경우에 나타날 때가 있다. 특히 페이지, 넘버 등의 애플 자체 생산성 애플리케이션(키노트, 넘버스...)에서 이런 오류가 자주 생기는 것으로 보인다. 또, “다른 사용자가 구입했거나, 앱이 환불 또는 취소되었으므로 이 애플 ID에서 업데이트를 진행할 수 없습니다”라는 오류 메시지 사례도 자주 보고된..

1. 부정을 이런식으로 표현합니다. ! 를 문장 앞에 써 준다는 게 함정. 2. func 은 문장 맨 밑에서 정의해 주거나 앞에서 정의해 주거나 상관없음. 3. AND = &&. ; NOT = ! ; OR = ||

what I have learned until now 1) if statement. if condition { 명령문 } else if condition { 명령문 } 2) boolean statement. : a condition like "true" or "false" if statement 안에 차례로 명령문을 쓸 수 있다. func 문법을 배우고 있습니다. unless I would forget.
swipe 가 아니라 swift 였다. 이름을 착각. 지금 손이 가는대로 닥치는대로 아이폰 앱을 만들기 위해 노력하고 있다. swift fundamental 책을 다운 받아서 읽어보고 거기에 나오는 예제들을 하고 있다. basic to code 1 - it's like a childish game for code. but I have to do these things as well. I don't know how long it takes for my coding journey. today I learned "for i in 1.... 6" loop 기능이라고 한다. 반복하길 원할 때 쓰는 기능. 앱에 원하는 기능. 1. expiration date 기능. 삽입 2. 인앱 결제. (만기되었을 때 바로 결제..