일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비전공 개발자
- Animation
- php
- button
- MAC
- SWIFT
- react
- hover
- HTML
- jQuery
- html5
- 백엔드
- keyframes
- iPhone
- 개발자
- IOS
- css3
- ipad
- front-end
- 자바스크립트
- 프론트엔드
- CSS
- 비전공자
- xcode
- image
- iOS 개발자
- 풀스택
- javascript
- 애니메이션
- effect
- Today
- Total
목록MAC (36)
비전공자 개발일기
import UIKit // Function: 어떤 기능을 하는 코드 모음 // 1) 함수 선언(정의) func sayHello() { print("Hello, World!") print("Hello, Swift!") print("Let's go!") } // 2) 함수 실행 sayHello() // 반대로는 안됨! //sayHello2() //func sayHello2() { // print("Hello, World!") // print("Hello, Swift!") // print("Let's go!") //} // 함수 사용 이유 // 1) 반복되는 동작을 편하게 재사용 // 2) 동작 구분의 편의 // 3) 코드의 단순화 // Function with input func accessChk(name..
// 변수 var a = 5 // a = 10 // a = 12 var b = 10 // b = 20 // b = 30 var c = 20, d = 30, e = 40 //print(a + b) // 15 //print(c + d + e) // 90 var name = "Stark" var age = 50 var address = "NewYork" name = "Tony Stark" age = 20 //print("I'm \(name).") //print("I'm \(age) years old.") //print("I live in \(address).") // String Interpolation: "\(변수명)" -- 문자열 중간에 삽입할 때 사용 // 상수 let team = "Avengers" /..

Inbox Today Upcoming Important Meetings Trash Family Vacation Festival Concerts Today Tasks All Important Notes Links Dashboard Design Implementation Approved Create a userflow In Progress Application Implementation In Review Create a Dashboard Design In Progress Create a Web Application Design Approved Interactive Design In Review Upcoming Tasks Dashboard Design Implementation Waiting Create a ..
단축키 설명 command + A 현재 활성화된 창의 모든 항목 선택 command + M 창 축소하기 command + delete 휴지통으로 해당 항목 이동 command 누른 상태로 드래그 드래그한 항목을 다른 위치로 이동 option 누른 상태로 드래그 드래그한 항목 복사 command + shift + 3 전체화면 스크린샷 command +shift + 4 지정 영역 스크린샷 command + W 화면 닫기 option + return 한자 키 전환 control + command + spacebar 특수키 선택창 command + C 복사 command + X 잘라내기 command + V 붙여넣기 shift + 창 모서리 가로 * 세로 동일한 비율로 확대 / 축소 option + 원하는 방향..