View in English

  • Apple Developer
    • Get Started

    Explore Get Started

    • Overview
    • Learn
    • Apple Developer Program

    Stay Updated

    • Latest News
    • Hello Developer
    • Platforms

    Explore Platforms

    • Apple Platforms
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    Featured

    • Design
    • Distribution
    • Games
    • Accessories
    • Web
    • Home
    • CarPlay
    • Technologies

    Explore Technologies

    • Overview
    • Xcode
    • Swift
    • SwiftUI

    Featured

    • Accessibility
    • App Intents
    • Apple Intelligence
    • Games
    • Machine Learning & AI
    • Security
    • Xcode Cloud
    • Community

    Explore Community

    • Overview
    • Meet with Apple events
    • Community-driven events
    • Developer Forums
    • Open Source

    Featured

    • WWDC
    • Swift Student Challenge
    • Developer Stories
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Centers
    • Documentation

    Explore Documentation

    • Documentation Library
    • Technology Overviews
    • Sample Code
    • Human Interface Guidelines
    • Videos

    Release Notes

    • Featured Updates
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • Downloads

    Explore Downloads

    • All Downloads
    • Operating Systems
    • Applications
    • Design Resources

    Featured

    • Xcode
    • TestFlight
    • Fonts
    • SF Symbols
    • Icon Composer
    • Support

    Explore Support

    • Overview
    • Help Guides
    • Developer Forums
    • Feedback Assistant
    • Contact Us

    Featured

    • Account Help
    • App Review Guidelines
    • App Store Connect Help
    • Upcoming Requirements
    • Agreements and Guidelines
    • System Status
  • Quick Links

    • Events
    • News
    • Forums
    • Sample Code
    • Videos
 

Vídeos

Abrir menu Fechar menu
  • Coleções
  • Todos os vídeos
  • Sobre

Mais vídeos

  • Sobre
  • Resumo
  • Código
  • Novidades nas avaliações no macOS

    Explore o framework Automatic Assessment Configuration no macOS para oferecer avaliações seguras em apps educacionais. Aprenda a utilizar as novas APIs para criar um ambiente de avaliação seguro e configurável que incorpore mais recursos do sistema no Mac. Saiba como as pré-verificações integradas do sistema e os controles de acessibilidade facilitam a oferta de uma experiência de avaliação confiável.

    Capítulos

    • 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

    Recursos

    • Automatic Assessment Configuration
      • Vídeo HD
      • Vídeo SD

    Vídeos relacionados

    WWDC26

    • Proteja seus apps com App Attest
  • Buscar neste vídeo...
    • 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

  • Vídeos
  • WWDC26
  • Novidades nas avaliações no macOS
  • Open Menu Close Menu
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • Icon Composer
    • SF Symbols
    Open Menu Close Menu
    • Accessibility
    • Accessories
    • Apple Intelligence
    • Audio & Video
    • Augmented Reality
    • Business
    • Design
    • Distribution
    • Education
    • Games
    • Health & Fitness
    • In-App Purchase
    • Localization
    • Maps & Location
    • Machine Learning & AI
    • Security
    • Safari & Web
    Open Menu Close Menu
    • Documentation
    • Downloads
    • Sample Code
    • Videos
    Open Menu Close Menu
    • Help Guides & Articles
    • Contact Us
    • Forums
    • Feedback & Bug Reporting
    • System Status
    Open Menu Close Menu
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles
    • Feedback Assistant
    Open Menu Close Menu
    • 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
    Open Menu Close Menu
    • Meet with Apple
    • Apple Developer Centers
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Academies
    • WWDC
    Read the latest news.
    Get the Apple Developer app.
    Copyright © 2026 Apple Inc. All rights reserved.
    Terms of Use Privacy Policy Agreements and Guidelines