Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- rxswift
- Clean Code
- swiftUI
- HIG
- 리팩토링
- Refactoring
- Human interface guide
- ribs
- RxCocoa
- ios
- uitableview
- swift documentation
- SWIFT
- 리펙터링
- uiscrollview
- clean architecture
- Observable
- Protocol
- UICollectionView
- combine
- tableView
- Xcode
- map
- MVVM
- UITextView
- 클린 코드
- collectionview
- 애니메이션
- 리펙토링
- 스위프트
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIActivityIndicatorView, loadingView, 로딩 뷰 본문
UIActivityIndicatorView를 상속받아서 구현
- 로딩중이면 다른 화면의 UI가 눌려지지 않도록 구현
- 중앙에 표출
구현
- 사용 시 매번 객체생성이 필요 없으므로 static으로 사용할 수 있게끔 선언
class LoadingIndicator {
static func showLoading() {
DispatchQueue.main.async {
// ...
}
}
static func hideLoading() {
DispatchQueue.main.async {
// ...
}
}
}
- showLoading 구현
- 최상단에 있는 window 객체 획득
- window의 subviews들 중 마지막에 있는 화면이 UIActivityIndicatorView면 그대로 사용하고, 아닐 경우 객체를 새로 생성
- UIActivityIndicatorView 객체의 frame은 window의 frame과 같게하여 indicator가 중앙에 가고 다른 뷰들의 interaction을 방지
// 최상단에 있는 window 객체 획득
guard let window = UIApplication.shared.windows.last else { return }
let loadingIndicatorView: UIActivityIndicatorView
if let existedView = window.subviews.first(where: { $0 is UIActivityIndicatorView } ) as? UIActivityIndicatorView {
loadingIndicatorView = existedView
} else {
loadingIndicatorView = UIActivityIndicatorView(style: .large)
/// 다른 UI가 눌리지 않도록 indicatorView의 크기를 full로 할당
loadingIndicatorView.frame = window.frame
loadingIndicatorView.color = .brown
window.addSubview(loadingIndicatorView)
}
loadingIndicatorView.startAnimating()
- hideLoading 구현
- window객체 중 마지막 window의 subview.last가 UIActivityIndicatorView 객체인 겨우 removeFromSuperview()를 통해서 view 삭제
static func hideLoading() {
DispatchQueue.main.async {
guard let window = UIApplication.shared.windows.last else { return }
window.subviews.filter({ $0 is UIActivityIndicatorView }).forEach { $0.removeFromSuperview() }
}
}
- 전체 코드
class LoadingIndicator {
static func showLoading() {
DispatchQueue.main.async {
// 최상단에 있는 window 객체 획득
guard let window = UIApplication.shared.windows.last else { return }
let loadingIndicatorView: UIActivityIndicatorView
if let existedView = window.subviews.first(where: { $0 is UIActivityIndicatorView } ) as? UIActivityIndicatorView {
loadingIndicatorView = existedView
} else {
loadingIndicatorView = UIActivityIndicatorView(style: .large)
/// 다른 UI가 눌리지 않도록 indicatorView의 크기를 full로 할당
loadingIndicatorView.frame = window.frame
loadingIndicatorView.color = .brown
window.addSubview(loadingIndicatorView)
}
loadingIndicatorView.startAnimating()
}
}
static func hideLoading() {
DispatchQueue.main.async {
guard let window = UIApplication.shared.windows.last else { return }
window.subviews.filter({ $0 is UIActivityIndicatorView }).forEach { $0.removeFromSuperview() }
}
}
}
사용
class ViewController: UIViewController {
@IBAction func didTapLoadingButton(_ sender: Any) {
LoadingIndicator.showLoading()
DispatchQueue.main.asyncAfter(deadline: .now() + 5) {
LoadingIndicator.hideLoading()
}
}
}
'iOS 응용 (swift)' 카테고리의 다른 글
Comments