일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tableView
- combine
- clean architecture
- Clean Code
- Protocol
- 클린 코드
- SWIFT
- 애니메이션
- uitableview
- UICollectionView
- ribs
- Human interface guide
- RxCocoa
- 스위프트
- 리펙토링
- MVVM
- 리펙터링
- Xcode
- collectionview
- uiscrollview
- Observable
- map
- swiftUI
- HIG
- rxswift
- swift documentation
- ios
- UITextView
- Refactoring
- 리팩토링
- Today
- Total
목록loader (2)
김종권의 iOS 앱 개발 알아가기
해당 프레임 워크가 좋은 이유 비동기 처리할 때 다른 로딩 뷰에 비해서 오류 x 로딩 뷰가 등장하면 뒤에있던 뷰들을 클릭하지 못함(안전상태) 자동으로 중앙에 배치 의존성 pod 'JGProgressHUD' BaseViewController생성하여 여기에 로딩관련 로직 추가 ( 재사용성을 위함 ) // // BaseViewController.swift // Test // // Created by 김종권 on 2020/11/26. // import Foundation import UIKit import JGProgressHUD class BaseViewController: UIViewController { lazy var hud: JGProgressHUD = { let loader = JGProgressHU..
의존성 pod 'MaterialComponents/ActivityIndicator' 버튼 커스텀 위 loading기능을 쓰려는 버튼들은 아래의 BaseButton을 상속받아서 사용 // // BaseButton.swift // Test // // Created by 김종권 on 2020/11/26. // import Foundation import MaterialComponents.MaterialActivityIndicator class BaseButton: UIButton { var activityIndicator: MDCActivityIndicator? var originalText: String? override init(frame: CGRect) { super.init(frame: frame) s..