일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백엔드
- iOS 개발자
- 프론트엔드
- ipad
- jQuery
- 개발자
- keyframes
- button
- xcode
- front-end
- html5
- HTML
- 비전공 개발자
- 풀스택
- effect
- image
- CSS
- css3
- 비전공자
- Animation
- hover
- php
- IOS
- 자바스크립트
- iPhone
- MAC
- SWIFT
- 애니메이션
- javascript
- react
- Today
- Total
목록SWIFT (69)
비전공자 개발일기
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/1Ph3N/btrVexwg9nA/UvdnpMFB8STnCJyIjYP02K/img.png)
개인 프로젝트를 위해 해당 어플을 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..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/msCdI/btrVgjXmsIU/Nj6TNAbEkRMhF9YrBOmGo1/img.png)
사이즈별 아이콘 준비 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 체크 여부 점검
LaunchScreen.storyboard 앱이 실행될 때 가장 먼저 화면에 나타나도록 설정된 화면 -> main이 노출되기 전에 잠시 나타나는 화면 주의 사항 UIKit만 사용해야 함 단 하나의 UIView or UIViewController 객체만 사용해야 함 Action, Outlet 사용 불가 UIWebView 사용 불가 커스텀 클래스 불가 런타임 속성 사용 불가 LaunchScreen 시간 조절법 -> Sleep(Int) func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override p..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/v8sQj/btrU132daCC/Dv0yKdeKkcV52WXQOAPrjK/img.gif)
https://github.com/munsangu/SWIFT_Prac/tree/main/MyTwentyEighthiOS GitHub - munsangu/SWIFT_Prac Contribute to munsangu/SWIFT_Prac development by creating an account on GitHub. github.com
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bAvTA8/btrUTKCKReG/CYIe57nObrBKoExDTd9Wn0/img.png)
Info.plist(Information Property List) 번들을 식별하고 구성하는 키-값 쌍을 포함하는 리소스 https://developer.apple.com/documentation/bundleresources/information_property_list Apple Developer Documentation developer.apple.com storyboard가 아닌 code만 활용해서 어플을 만들어보기 위해서 최초 프로젝트 생성 시 보이는 Main을 지우고 code로만 작성 후 빌드 시 문제 발생 분명히, Main은 다 지웠는데, 에러 내용은 '~Main이 없다~' 다시 말해, 앱이 실행되면 새로 생성한 root가 아닌 기존에 있던 Main으로 가는 것이고, Main과 관련된 것이 아..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bC0EER/btrU0vEbEfD/oPPKEwsegFUR5C2IiX2cL1/img.png)
'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..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bTQvHF/btrU01bRLG1/Uo5InczgPsTUgDofxVsb0k/img.gif)
PunkAPI https://punkapi.com/documentation/v2 Punk API: Brewdog's DIY Dog as an API If you would like to contribute to keeping the lights on and the maintenance of Punk API, I'm accepting donations through these channels BTC ETH LTC punkapi.com Postman https://www.postman.com/ Postman API Platform | Sign Up for Free Postman is an API platform for building and using APIs. Postman simplifies each s..