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

프로젝트 제작을 위해 기능별로 나눠둔 부분들을 하나로 합치던 과정에서 생긴 에러 Thread 1: "Invalid parameter not satisfying: !stayUp || CLClientIsBackgroundable(internal->fClient) || _CFMZEnabled()" 원인 1. Capability - Background mode가 없었던 것 2. Background mode 추가 후 Location updates를 체크하지 않았던 것 해결 1. Capability - Background mode를 추가 2. Background mode 추가 후 Location updates를 체크

There's some issues Marvel Hope you success our mission as our team thank you see again 4 0 4 Visit the home page @import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700"); @import url("https://fonts.googleapis.com/css?family=Catamaran:400,800"); .error-container { text-align: center; font-size: 180px; font-family: "Catamaran", sans-serif; font-weight: 800; margin: 20px 15px;..

storyboard로 layout을 구성하고, 코드에 연결하고, 테스트를 위해 어플을 실행하는 과정에서 아래와 같은 에러가 발생 *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key key이름. Thread 1: "[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key key이름. 해결 과정 1. 해당 key이름이 선언된 storyboard 및 코드 확인 위의 사진..

개인 프로젝트를 위해 해당 어플을 Firebase에 연동하고, Firebase에 저장한 DB(Realtime Database)들을 불러오는 과정에서 아래와 같은 에러가 발생 ERROR JSON Parsing The data couldn’t be read because it is missing. 해결 과정 1. value부터 값들을 잘 불러오는 지 점검 -> hospitalData가 출력이 안되는 것 확인 self.ref = Database.database().reference() self.ref.observe(.value) { snapshot in guard let value = snapshot.value as? [String: [String: Any]] else { return } // print(va..

'OOO' 유형이 프로토콜 'OOO'를 준수하지 않습니다. 에러문 그대로 구글링해서 검색 https://stackoverflow.com/questions/48568373/codable-class-does-not-conform-to-protocol-decodable Codable class does not conform to protocol Decodable Why am I getting a "Type 'Bookmark' does not conform to protocol 'Decodable'" error message? class Bookmark: Codable { weak var publication: Publication? var indexPath: [Int] var location... stacko..