일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- css3
- ipad
- front-end
- button
- 자바스크립트
- 풀스택
- 비전공 개발자
- html5
- php
- 개발자
- Animation
- jQuery
- SWIFT
- hover
- iPhone
- react
- 백엔드
- 비전공자
- 프론트엔드
- IOS
- CSS
- image
- keyframes
- xcode
- effect
- HTML
- MAC
- iOS 개발자
- 애니메이션
- Today
- Total
목록비전공자 (249)
비전공자 개발일기
https://github.com/yusufshakeel/dyCalendarJS GitHub - yusufshakeel/dyCalendarJS: This is a JavaScript library to create Calendar. You can use it in your blog and website. This is a JavaScript library to create Calendar. You can use it in your blog and website. - GitHub - yusufshakeel/dyCalendarJS: This is a JavaScript library to create Calendar. You can use it in yo... github.com * { margin: 0; ..
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body{ background: #BB2429; padding: 0 20px; } ::selection{ color: #fff; background: #BB2426; } .wrapper{ max-width: 450px; margin: 150px auto; } .wrapper .search-input{ background: #fff; width: 100%; bor..
storyboard, code 작성 완료 후 테스트 과정에서 마주친 에러 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException' , reason: 'Invalid parameter not satisfying: [constraint isKindOfClass:[NSLayoutConstraint class]]' 처음엔 Xcode 버그인가라고 생각해 Mac 재실행, Xcode 재실행을 했었으나 같은 에러가 계속 등장 그래서 해당 에러를 면밀히 읽어보니까 보이는 단어 constraint 이것을 바탕으로, storyboard에서 뭔가가 잘못됬을거라 추측 해결 과정 1. storyboard에서 에러가 발생하는 부분은 없었기에, ..
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..
Happy New Year 2023 * { margin: 0; padding: 0; box-sizing: border-box; position: relative; } body { min-height: 100vh; display: flex; justify-content: center; align-items: center; background-color: #222; } .box { height: 200px; transform-style: preserve-3d; animation: animate 16s linear infinite; } @keyframes animate { 0% { transform: rotateX(-20deg) rotateY(360deg); } 100% { transform: rotateX(..
사이즈별 아이콘 준비 https://www.appicon.co/#app-icon App Icon Generator www.appicon.co Assets 설정 위에서 생성한 앱 아이콘 모음 압축을 풀고, 해당 프로젝트의 Assets로 드래그 앱 아이콘 관련 설정 점검 1. Build Settings 확인 (Targets -> Build Settings -> Asset Category Compiler - Options -> Primary App Icon Set Name) 또는 Build Settings 에서 Filter로 Primary App Icon Set Name 검색 2. Assets에서 Target Membership 체크 여부 점검
Home Menu What's New Contact It's not just Coffee It's Starbucks Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, alias ex eligendi quaerat itaque facere sint aliquid, unde, aut temporibus libero amet minus ipsam maxime laborum officia magni rerum vel ratione fugiat adipisci veritatis. Learn More * { margin: 0; padding: 0; box-sizing: border-box; position: relative; } section { widt..