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 | 31 |
Tags
- ios
- UIResponder
- vtable
- AVCaptureSession
- binder
- Custom Class
- hitTest
- RxSwift
- swift
- MaxHeap
- Responder chain
- 전자출입
- 입력
- BidirectionalCollection
- delays deallocation
- weak self
- reversed
- moya
- Combine
- ReactorKit
- 공백
- 사내배포
- UserDefaults
- URLSession
- DISPATCH
- input
- async
- readLine
- Asnyc
- Python
Archives
- Today
- Total
목록animate (1)
틈틈히 적어보는 개발 일기

UIVIew.animate apple공식문서 View에 animation 추가하기 아래의 코드를 button의 action에 추가합니다. UIView.animate(withDuration: 0.5, delay: 0.1, options: .curveEaseInOut, animations: { () -> Void in self.extendView.frame = CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 350) }, completion: { (didFinish) -> Void in }) withDuration -> 몇 ’초’ 동안 animation을 보여 줄 것인지 정합니다. delay -> animation을 시작하기 전 delay를 정합..
📱 iOS, Swift
2020. 6. 8. 16:39