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

[SceneDelegate] func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. // This delegate does not imply th..

Xcode -> Product -> Archive(실제 기기에서 어플을 실행하면 활성화됨) 완료 후 App Store Connect에서 빌드를 눌러서 첨부 앱 정보, 가격 및 사용 가능 여부, 앱이 수집하는 정보 등을 기입하고 심사 요청 https://www.privacy.go.kr/a3sc/per/inf/perInfStep01.do > 메인 개인정보 처리방침 만들기 개인정보 처리방침 간단히 만들기 개인정보 처리방침을 간단하게 작성해 보세요. 개인정보 처리방침 새로 만들기 - 개인정보보호법 및 시행령, 표준 개인정보 보호지 www.privacy.go.kr 스크린샷 만들기 사이트 https://app-mockup.com/ The world's most powerful screenshot builder Us..

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..
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..

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과 관련된 것이 아..

'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..