일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ios
- Clean Code
- Human interface guide
- clean architecture
- SWIFT
- MVVM
- map
- Observable
- collectionview
- UITextView
- Xcode
- 리펙토링
- 클린 코드
- Refactoring
- 리팩토링
- swiftUI
- 애니메이션
- HIG
- uitableview
- rxswift
- Protocol
- uiscrollview
- UICollectionView
- 스위프트
- combine
- RxCocoa
- swift documentation
- 리펙터링
- ribs
- Today
- Total
목록AVFoundation (10)
김종권의 iOS 앱 개발 알아가기
https://github.com/kaishin/Gifu mp4 파일 재생 animation이 동작할 UIImageView 추가 애니메이션을 실행시킬 playVideo 함수 추가 private func playVideo(with resourceName: String) { guard let path = Bundle.main.path(forResource: resourceName, ofType: "mp4") else { return } let player = AVPlayer(url: URL(fileURLWithPath: path)) let playerLayer = AVPlayerLayer(player: player) playerLayer.frame = animationView.bounds animationV..
핵심 타입 AVCaptureSession AVCaptureDevice AVCaptureDeviceInput, AVCapturePhotoOutput AVCaptureVideoPreviewLayer AVCaptureSession 개념: 세션이란 입력에서 출력 장치로의 데이터 흐름을 제어하는데 사용 해상도 설정: captureSession.sessionPreset captureSession = AVCaptureSession() captureSession.sessionPreset = .photo // set resoultion AVCaptureDevice 개념: 말 그래로 "capture"하는 물리적인 device를 참조하는 데이터형 guard let backCamera = AVCaptureDevice.defa..