View in English

  • Apple Developer
    • 시작하기

    시작하기 탐색

    • 개요
    • 알아보기
    • Apple Developer Program

    알림 받기

    • 최신 뉴스
    • Hello Developer
    • 플랫폼

    플랫폼 탐색

    • Apple 플랫폼
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    피처링

    • 디자인
    • 배포
    • 게임
    • 액세서리
    • 웹
    • 홈
    • CarPlay
    • 기술

    기술 탐색

    • 개요
    • Xcode
    • Swift
    • SwiftUI

    피처링

    • 손쉬운 사용
    • 앱 인텐트
    • Apple Intelligence
    • 게임
    • 머신 러닝 및 AI
    • 보안
    • Xcode Cloud
    • 커뮤니티

    커뮤니티 탐색

    • 개요
    • Apple과의 만남 이벤트
    • 커뮤니티 주도 이벤트
    • 개발자 포럼
    • 오픈 소스

    피처링

    • WWDC
    • Swift Student Challenge
    • 개발자 이야기
    • App Store 어워드
    • Apple 디자인 어워드
    • 문서

    문서 탐색

    • 문서 라이브러리
    • 기술 개요
    • 샘플 코드
    • 휴먼 인터페이스 가이드라인
    • 비디오

    릴리즈 노트

    • 피처링 업데이트
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • 다운로드

    다운로드 탐색

    • 모든 다운로드
    • 운영 체제
    • 애플리케이션
    • 디자인 리소스

    피처링

    • Xcode
    • TestFlight
    • 서체
    • SF Symbols
    • Icon Composer
    • 지원

    지원 탐색

    • 개요
    • 도움말
    • 개발자 포럼
    • 피드백 지원
    • 문의하기

    피처링

    • 계정 도움말
    • 앱 심사 지침
    • App Store Connect 도움말
    • 새로 추가될 요구 사항
    • 계약 및 지침
    • 시스템 상태
  • 빠른 링크

    • 이벤트
    • 뉴스
    • 포럼
    • 샘플 코드
    • 비디오
 

비디오

메뉴 열기 메뉴 닫기
  • 컬렉션
  • 전체 비디오
  • 소개

더 많은 비디오

  • 소개
  • 요약
  • 코드
  • macOS에서 평가의 새로운 기능

    macOS의 Automatic Assessment Configuration 프레임워크를 살펴보고 교육 앱을 위한 안전한 테스트를 제공하세요. 새로운 API를 활용하여 Mac에서 더 많은 시스템 수준 기능을 통합하는 안전하고 구성 가능한 테스트 환경을 만드는 방법을 알아보세요. 내장된 시스템 사전 검사와 접근성 제어 항목을 사용하여 어떻게 신뢰할 수 있는 시험 경험을 그 어느 때보다 더 쉽게 제공할 수 있는지 살펴보세요.

    챕터

    • 0:00 - Introduction
    • 1:34 - Precondition checks
    • 3:00 - Accessibility restrictions
    • 4:33 - System experience customization
    • 9:16 - Application launch restrictions
    • 10:51 - Best practices
    • 12:35 - Next steps

    리소스

    • Automatic Assessment Configuration
      • HD 비디오
      • SD 비디오

    관련 비디오

    WWDC26

    • App Attest로 앱 보호하기
  • 비디오 검색…
    • 2:30 - Set up precondition checks

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowLockdownMode = false
          configuration.allowPrivateRelay = false
          configuration.requiresSIP = true
          configuration.requiresManagedDevice = true
          configuration.requiresSingleUser = true
          configuration.requiresUserAccountType = .standard
      
          return configuration
      }
    • 4:01 - Restrict accessibility features

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowsAccessibilityVoiceOver = true
          configuration.allowsAccessibilitySwitchControl = false
          configuration.allowsAccessibilityAlternativeInputMethods = true
          configuration.allowsAccessibilityBackgroundSounds = true
          configuration.allowsAccessibilityHoverText = true
          configuration.allowsAccessibilityLiveSpeech = true
          configuration.allowsAccessibilitySpokenContent = true
          configuration.allowsAccessibilityVoiceControl = true
          configuration.allowsAccessibilityZoom = true
      
          return configuration
      }
    • 5:32 - Customize the Menu Bar items

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowsMenuBar = true
          configuration.allowedMenuBarItems = [
              .battery,
              .clock,
              .volume
          ]
          configuration.allowedAppleMenuItems = [
              .sleep
          ]
      
          return configuration
      }
    • 7:01 - Define input restrictions

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowsDictation = false
          configuration.allowsAutoFill = false
          configuration.allowsStructuralInput = false
          configuration.allowsEmojiKeyboard = false
      
          return configuration
      }
    • 7:38 - Enable dock appearance

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowsDock = true
      
          return configuration
      }
    • 8:35 - Set allowed directories and files

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowedDirectoriesAndFiles = [
              URL(fileURLWithPath: "~/Documents/")
          ]
      
          return configuration
      }
    • 9:58 - Set application launch restrictions

      import AutomaticAssessmentConfiguration
      
      func makeAssessmentConfiguration() -> AEAssessmentConfiguration {
          let configuration = AEAssessmentConfiguration()
      
          configuration.allowOnlyParticipantsToRun = true
          configuration.allowsUserScriptExecution = false
      
          return configuration
      }
    • 0:00 - Introduction
    • An overview of the Automatic Assessment Configuration framework in macOS 27, which creates a locked-down testing environment, and a preview of the five areas covered.

    • 1:34 - Precondition checks
    • Require a hardened device before an exam starts — System Integrity Protection, MDM enrollment, a single signed-in standard account, and disabled Lockdown Mode and iCloud Private Relay.

    • 3:00 - Accessibility restrictions
    • Control which built-in accessibility features stay available during a session, allowing approved accommodations like Switch Control while restricting features that accept user-generated content.

    • 4:33 - System experience customization
    • Tailor how students interact with macOS during an assessment by customizing the Menu Bar and its items, the Dock, input technologies like Dictation and AutoFill, and Finder access.

    • 9:16 - Application launch restrictions
    • Restrict which processes run during an assessment to your app and allowlisted participants, and block Shortcuts and Automator script execution to protect the testing environment.

    • 10:51 - Best practices
    • Recommendations for adopting the framework: rely on its APIs rather than building equivalents, restrict only the minimum required, treat accessibility as a requirement, and register for session transition callbacks.

    • 12:35 - Next steps
    • Ways to take your assessment app further — validate device integrity with pre-checks, enable accessibility for an equitable experience, customize the system experience, block non-essential processes, and test with real exam workflows.

Developer Footer

  • 비디오
  • WWDC26
  • macOS에서 평가의 새로운 기능
  • 메뉴 열기 메뉴 닫기
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    메뉴 열기 메뉴 닫기
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • SF Symbols
    메뉴 열기 메뉴 닫기
    • 손쉬운 사용
    • 액세서리
    • Apple Intelligence
    • 앱 확장 프로그램
    • App Store
    • 오디오 및 비디오(영문)
    • 증강 현실
    • 디자인
    • 배포
    • 교육
    • 서체(영문)
    • 게임
    • 건강 및 피트니스
    • 앱 내 구입
    • 현지화
    • 지도 및 위치
    • 머신 러닝 및 AI
    • 오픈 소스(영문)
    • 보안
    • Safari 및 웹(영문)
    메뉴 열기 메뉴 닫기
    • 문서(영문)
    • 튜토리얼
    • 다운로드
    • 포럼(영문)
    • 비디오
    메뉴 열기 메뉴 닫기
    • 지원 문서
    • 문의하기
    • 버그 보고
    • 시스템 상태(영문)
    메뉴 열기 메뉴 닫기
    • Apple Developer
    • App Store Connect
    • 인증서, 식별자 및 프로파일(영문)
    • 피드백 지원
    메뉴 열기 메뉴 닫기
    • Apple Developer Program
    • Apple Developer Enterprise Program
    • App Store Small Business Program
    • MFi Program(영문)
    • Mini Apps Partner Program
    • News Partner Program(영문)
    • Video Partner Program(영문)
    • Security Bounty Program(영문)
    • Security Research Device Program(영문)
    메뉴 열기 메뉴 닫기
    • Apple과의 만남
    • Apple Developer Center
    • App Store 어워드(영문)
    • Apple 디자인 어워드
    • Apple Developer Academy(영문)
    • WWDC
    최신 뉴스 읽기.
    Apple Developer 앱 받기.
    Copyright © 2026 Apple Inc. 모든 권리 보유.
    약관 개인정보 처리방침 계약 및 지침