일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- keyframes
- 비전공 개발자
- CSS
- 백엔드
- HTML
- html5
- effect
- react
- css3
- button
- 비전공자
- hover
- IOS
- 자바스크립트
- Animation
- front-end
- javascript
- iPhone
- 풀스택
- 개발자
- php
- ipad
- jQuery
- SWIFT
- xcode
- image
- 프론트엔드
- MAC
- iOS 개발자
- 애니메이션
- Today
- Total
목록Apple (8)
비전공자 개발일기

iOS 개발자가 되려면 기술과 창의성의 조합이 필요합니다. iOS 개발자는 Apple의 모바일 운영 체제인 iOS에서 실행되는 애플리케이션을 만드는 일을 담당하게 됩니다. 성공적인 iOS 개발자가 되기 위해 집중해야 할 주요 영역은 다음과 같습니다. 프로그래밍 언어: iOS 애플리케이션 개발에 사용되는 기본 언어는 Apple에서 개발한 현대적이고 빠르고 안전한 프로그래밍 언어인 Swift입니다. 또한 많은 레거시 앱에서 여전히 사용하는 iOS 앱 개발에 사용되는 이전 언어인 Objective-C에 익숙해야 합니다. iOS 개발 프레임워크: iOS 개발자는 UIKit, Foundation, Core Data, Core Animation 등 Apple에서 제공하는 다양한 프레임워크에 익숙해야 합니다. 이러한..

Xcode를 14.3으로 업데이트한 이후, 제작하고 있는 어플을 테스트하기 위해 archive를 했으나 아래의 에러가 발생 rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/97f6331a-ba75-11ed-a4bc-863efbbaf80d/Library/Caches/co m.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9] 구글링을 통해서 알게된 내용 https://developer.apple.com/forums/thread/727525 Cocoapod에 문제가 있다.. 해결방법 Pods-APPNAME-frameworks.sh의 코드..

Text Soap An iMessage chat becomes fodder for daytime drama This begins one morning with my friend in San Diego telling me about an earthquake they just had. It was loud. We just laid there and said “is this an earthquake? I think this is an earthquake.” Like is this an earthquake just go back to sleep It’s more like “this is an earthquake. Check the Internet. Yup. Earthquake. This is the size. ..

import Foundation struct Task { var title: String var done: Bool } import UIKit class ViewController: UIViewController { @IBOutlet weak var tableView: UITableView! @IBOutlet var editBTN: UIBarButtonItem! var doneBTN: UIBarButtonItem? var tasks = [Task]() { didSet { self.saveTasks() } } override func viewDidLoad() { super.viewDidLoad() doneBTN = UIBarButtonItem(barButtonSystemItem: .done, target:..

New Apple Watch $500 Buy Now * { margin: 0; padding: 0; box-sizing: border-box; position: relative; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #09383E; } .card { width: 300px; height: 400px; background-color: #FFF; transform-style: preserve-3d; transform: perspective(2000px); transition: 1s; box-shadow: inset 300px 0 50px rgba(0, 0,..

import Foundation var comChoice = Int.random(in: 1...100) var myChoice: Int = 0 print("컴퓨터가 선택한 숫자 맞추기") while true { var myInput = readLine() print("당신의 입력한 숫자: \(myInput!)") if let input = myInput { if let num = Int(input) { myChoice = num } } if(comChoice > myChoice) { print("UP") myChoice = 0 } else if (comChoice < myChoice) { print("DOWN") myChoice = 0 } else { print("BINGO") break } }

.logo { font-size: 8rem; text-shadow: 0 0 100px; animation: animate 2s infinite linear; margin:25% 50%; } @keyframes animate { 0%, 100% { color: lawngreen; } 25% { color: deeppink; } 50% { color: deepskyblue; } 75% { color: white; } }
단축키 설명 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 + 원하는 방향..