
[문제해결] @Sendable과 isolated 실전 응용: AVCaptureDevice.requestAccess(for:)
·
📱 iOS/Swift Concurrency
문제해결final class CustomAlbumViewController: UIViewController { private func checkCameraAuthorization() { let authorization = AVCaptureDevice.authorizationStatus(for: .video) switch authorization { case .notDetermined: AVCaptureDevice.requestAccess(for: .video) { @Sendable granted in if granted { Task { [weak self] in ..