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 ↗Chapters
Code shown on screen · 1 snippet
Add an accessibility label
// Add an accessibility label
import SwiftUI
struct LandmarkDetailView: View {
(ModelData.self) var modelData
let landmark: Landmark
var body: some View {
var modelData = modelData
DetailContentView()
.toolbar {
ToolbarItemGroup {
Button {
} label: {
Image(systemName: "square.arrow.up")
}
.accessibilityLabel("Share")
}
}
}
} Resources
Related sessions
-
16 min