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
 

Vidéos

Ouvrir le menu Fermer le menu
  • Collections
  • Toutes les vidéos
  • À propos

Plus de vidéos

  • À propos
  • Code
  • Craft search experiences in SwiftUI

    Discover how you can help people quickly find specific content within your apps. Learn how to use SwiftUI's .searchable modifier in conjunction with other views to best incorporate search for your app. And we'll show you how to elevate your implementation by providing search suggestions to help people understand the types of searches they can perform.

    Ressources

      • Vidéo HD
      • Vidéo SD

    Vidéos connexes

    WWDC21

    • What's new in SwiftUI
    • What's new in watchOS 8
  • Rechercher dans cette vidéo…
    • 0:10 - Colors Suggestions

      struct ColorsContentView: View {
          @State var text = ""
          
          var body: some View {
              NavigationView {
                  Sidebar()
                  DetailView()
              }
              .searchable(text: $text) {
                 ForEach(suggestions) { suggestion in
                      Button {
                          text = suggestion.text
                      } label: {
                          ColorsSuggestionLabel(suggestion)
                      }
                  }
              }
          }
      }
    • 1:17 - New Searchable Modifier

      ContentView()
          .searchable(text: $text)
    • 1:58 - Weather Search

      NavigationView {
          WeatherList(text: $text) {
              ForEach(data) { item in
                  WeatherCell(item)
              }
          }
      }
      .searchable(text: $text)
    • 3:11 - Weather List

      struct WeatherList: View {
          @Binding var text: String
          
          @Environment(\.isSearching)
          private var isSearching: Bool
          
          var body: some View {
              WeatherCitiesList()
                  .overlay {
                      if isSearching && !text.isEmpty {
                          WeatherSearchResults()
                      }
                  }
          }
      }
    • 5:07 - Colors Search

      struct ColorsContentView: View {
          @State var text = ""
          
          var body: some View {
              NavigationView {
                  Sidebar()
                  DetailView()
              }
              .searchable(text: $text)
          }
      }
    • 7:15 - Colors Search with TV

      struct ColorsContentView: View {
          @State var text = ""
          
          var body: some View {
              NavigationView {
                  #if os(tvOS)
                  TabView {
                      Sidebar()
                      ColorsSearch()
                          .searchable(text: $text)
                  }
                  #else
                  Sidebar()
                  DetailView()
                  #endif
              }
              #if !os(tvOS)
              .searchable(text: $text)
              #endif
          }
      }
    • 9:09 - Colors Search Completions

      struct ColorsContentView: View {
          @State var text = ""
          
          var body: some View {
              NavigationView {
                  Sidebar()
                  DetailView()
              }
              .searchable(text: $text) {
                 ForEach(suggestions) { suggestion in
                      ColorsSuggestionLabel(suggestion)
                          .searchCompletion(suggestion.text)
                  }
              }
          }
      }
    • 10:21 - On Submit

      ContentView()
          .searchable(text: $text) {
              MySearchSuggestions()
          }
          .onSubmit(of: .search) {
              fetchResults()
          }

Developer Footer

  • Vidéos
  • WWDC21
  • Craft search experiences in SwiftUI
  • 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