Dunfey · Hotel WWDC as data, est. 1983
Front desk everything
Years
Topics

2025 Accessibility & Inclusion

WWDC25 · 24 min · Accessibility & Inclusion

Evaluate your app for Accessibility Nutrition Labels

Use Accessibility Nutrition Labels on your App Store product page to highlight the accessibility features supported by your app. You’ll learn how to evaluate your app’s accessibility features — such as VoiceOver, Larger Text, Captions, and more — and choose accurate and informative Accessibility Nutrition Labels. You’ll also find out how to approach accessibility throughout the design phase.

Watch at developer.apple.com ↗

Transcript all transcripts

Chapters

  • 0:00 — Welcome
  • 0:58 — Meet Accessibility Nutrition Labels
  • 3:06 — Evaluate your app
  • 21:44 — Indicate feature support

Code shown on screen · 1 snippet

Add an accessibility label swift · at 13:07 ↗
// Add an accessibility label

import SwiftUI

struct LandmarkDetailView: View {
  @Environment(ModelData.self) var modelData
  let landmark: Landmark

  var body: some View {
    @Bindable var modelData = modelData
    DetailContentView()
      .toolbar {
        ToolbarItemGroup {
          Button {
          } label: {
            Image(systemName: "square.arrow.up")
          }
					.accessibilityLabel("Share")
        }
      }
   }
}

Resources