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
- swiftUI
- Human interface guide
- uitableview
- tableView
- ios
- uiscrollview
- MVVM
- Clean Code
- rxswift
- 리펙터링
- UICollectionView
- swift documentation
- RxCocoa
- HIG
- collectionview
- Xcode
- clean architecture
- Refactoring
- 애니메이션
- 리펙토링
- combine
- 리팩토링
- Observable
- ribs
- SWIFT
- 클린 코드
- map
- Protocol
- UITextView
- 스위프트
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 5. 서버 - Indicator View (버퍼링 표현) 본문
*서버의 REQ, RES는 시간이 오래걸리는 작업이므로 사용자에게 버퍼링과 같은 표현을 해줘야 기다리기 용이
Activity Indicator View 추가
1) 생성, @IBOutlet설정
2) 맨 앞으로 뷰 배치
- 가려지는 것을 방지하여 맨 앞으로 배치
1
2
3
4
|
@IBOutlet var indicatorView: UIActivityIndicatorView!
override func viewDidLoad() {
self.view.bringSubviewToFront(self.indicatorView)
}
|
3) start, stop
1
2
3
4
5
|
// start
self.indicatorView.startAnimating()
// stop
self.indicatorView.stopAnimating()
|
REQ시작 후 바로 start, RES왔을 때 바로 stop
'iOS 실전 (swift) > 서버' 카테고리의 다른 글
[iOS - swift] 7. 서버 - Key Chain 핸들링 (1) | 2020.04.25 |
---|---|
[iOS - swift] 6. 서버 - OAuth, Key Chain, 로그인 관리 토큰 (0) | 2020.04.25 |
[iOS - swift] 4. 서버 - Alamofire를 이용한 회원가입 요청, 응답 (0) | 2020.04.24 |
[iOS - swift] 3. 서버 - Alamofire (RESTful API) (0) | 2020.04.24 |
[iOS - swift] 2. 서버 - RESTful API 실습 (Foundation framework사용) (0) | 2020.04.24 |
Comments