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