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

import UIKit import FirebaseAuth class ProfileViewController: UIViewController { @IBOutlet var tableView: UITableView! let data = ["Log Out"] override func viewDidLoad() { super.viewDidLoad() tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell") tableView.delegate = self tableView.dataSource = self } } extension ProfileViewController: UITableViewDelegate, UITableViewDataSource..

// AppDelegate import UIKit import Firebase @main class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { FirebaseApp.configure() return true } // MARK: UISceneSession Lifecycle func application(_ application: UIApplication, configurationForConnecting conn..

개인 프로젝트를 위해 해당 어플을 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..

Remote Config 배포 및 업데이트 다운로드 없이 앱 변경 기본값을 설정한 후 값을 재정의 클라우드 기반 Key - Value 저장소 앱 사용층에 변경사항을 빠르게 적용(업데이트 없이 앱의 UI/UX 변경을 지원) 사용자층의 특정 세그먼트에 앱 맞춤 설정(앱 버전, 언어 등으로 분류된 사용자 세그먼트별 환경 제공) A / B Test를 실행하여 앱 개선(사용자 세그먼트별로 개선사항을 검증 후 점진적 적용을 해볼 수 있음) A / B Test Google Analytics, Firebase 예측을 통한 사용자 타겟팅 원격구성(Remote Config or Cloud Messaging)활용 재품, 마케팅 실험을 쉽게 실행, 분석, 확장이 가능 제품 환경 테스트 및 개선(앱 동작 및 모양을 변경하여 최..

Remote Notification 전송 방식 Provider(Server) -> APNs -> iOS, watchOS, tvOS, macOS -> ClientApp APNs Apple Push Notification Service (애플 개발자 계정 필요) https://developer.apple.com/kr/ Apple Developer Apple 플랫폼에서 개발할 절호의 기회입니다 developer.apple.com FCM Firebase Cloud Message https://firebase.google.com/ Firebase Firebase는 고품질 앱을 빠르게 개발하고 비즈니스를 성장시키는 데 도움이 되는 Google의 모바일 플랫폼입니다. firebase.google.com // AppD..