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