View in English

  • Apple Developer
    • 今すぐ始める

    「今すぐ始める」を詳しく見る

    • 概要
    • 学ぶ
    • Apple Developer Program

    最新情報

    • 最新ニュース
    • Hello Developer
    • プラットフォーム

    プラットフォームを詳しく見る

    • Appleプラットフォーム
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    • App Store

    特集

    • デザイン
    • 配信
    • ゲーム
    • アクセサリ
    • Web
    • Home
    • CarPlay
    • テクノロジー

    テクノロジーを詳しく見る

    • 概要
    • Xcode
    • Swift
    • SwiftUI

    特集

    • アクセシビリティ
    • App Intent
    • Apple Intelligence
    • ゲーム
    • 機械学習とAI
    • セキュリティ
    • Xcode Cloud
    • コミュニティ

    コミュニティを詳しく見る

    • 概要
    • 「Appleに相談」イベント
    • コミュニティによるイベント
    • デベロッパフォーラム
    • オープンソース

    特集

    • WWDC
    • Swift Student Challenge
    • デベロッパストーリー
    • App Store Awards
    • Apple Design Awards
    • Apple Developer Center
    • ドキュメント

    ドキュメントを詳しく見る

    • ドキュメントライブラリ
    • テクノロジー概要
    • サンプルコード
    • ヒューマンインターフェイスガイドライン
    • ビデオ

    リリースノート

    • 注目のアップデート
    • iOS
    • iPadOS
    • macOS
    • watchOS
    • visionOS
    • tvOS
    • Xcode
    • ダウンロード

    ダウンロードを詳しく見る

    • すべてのダウンロード
    • オペレーティングシステム
    • アプリ
    • デザインリソース

    特集

    • Xcode
    • TestFlight
    • フォント
    • SF Symbols
    • Icon Composer
    • サポート

    サポートを詳しく見る

    • 概要
    • ヘルプガイド
    • デベロッパフォーラム
    • フィードバックアシスタント
    • お問い合わせ

    特集

    • アカウントヘルプ
    • App Reviewガイドライン
    • App Store Connectヘルプ
    • 近日導入予定の要件
    • 契約およびガイドライン
    • システムステータス
  • クイックリンク

    • イベント
    • ニュース
    • Forum
    • サンプルコード
    • ビデオ
 

ビデオ

メニューを開く メニューを閉じる
  • コレクション
  • すべてのビデオ
  • 利用方法

その他のビデオ

  • 概要
  • Summary
  • コード
  • ショートカットの新機能

    アプリのコンテンツを活用して強力なショートカットを構築するテクニックを確認しましょう。新しい自動化機能によって、アプリとシステムを新たな方法で連係させることができます。新しいUse Model変換機能を使用すると、より的確なApp EntityをLLMに提供できるようになります。アプリの豊富な情報を、デバイス間で同期されるショートカット内に保存できます。これらの機能を組み合わせて、アプリのコンテンツや機能とスムーズに統合する、インテリジェントでパワフルな自動化を実現する方法を解説します。

    関連する章

    • 0:01 - Introduction
    • 0:57 - Automations
    • 3:25 - Use Model
    • 6:58 - Storage

    リソース

    • Shortcuts
    • Notifications
      • HDビデオ
      • SDビデオ

    関連ビデオ

    WWDC25

    • App Intentを使用したショートカットおよびSpotlight向け機能の開発
  • このビデオを検索
    • 6:12 - Soup Entity Example

      // MARK: - Soup Entity
      
      import AppIntents
      
      struct SoupEntity: AppEntity, Identifiable {
          static var typeDisplayRepresentation = TypeDisplayRepresentation(
              name: "Soup",
              numericFormat: "\(placeholder: .int) soups"
          )
          static var defaultQuery = SoupEntityQuery()
          
          var id: Soup.ID
          
          @Property var name: String
          
          @Property(title: "Available Today")
          var isAvailableToday: Bool
          
          @Property(title: "Ingredients")
          var ingredients: String
          
          var displayRepresentation: DisplayRepresentation {
              DisplayRepresentation(title: "\(name)", subtitle: SoupStore.description(for: id))
          }
      }
    • 10:05 - Soup Entity Example

      // MARK: - Soup Entity
      
      import AppIntents
      
      struct SoupEntity: AppEntity, Identifiable {
          static var typeDisplayRepresentation = TypeDisplayRepresentation(
              name: "Soup",
              numericFormat: "\(placeholder: .int) soups"
          )
          static var defaultQuery = SoupEntityQuery()
          
          var id: Soup.ID
          
          @Property var name: String
          
          @Property(title: "Available Today")
          var isAvailableToday: Bool
          
          @Property(title: "Ingredients")
          var ingredients: String
          
          var displayRepresentation: DisplayRepresentation {
              DisplayRepresentation(title: "\(name)", subtitle: SoupStore.description(for: id))
          }
      }
    • 0:01 - Introduction
    • Shortcuts lets people combine everyday app actions and surface them across the system - like through Siri, Control Center, and the Action Button. Explore three major enhancements to Shortcuts and how to leverage the content in your app to integrate with the system.

    • 0:57 - Automations
    • In iOS 26, Automations are easier to discover in the Shortcuts editor. There are three new automation types - screenshot, keyboard connection, and notification. The notification automation enables fine-grained, keyword-filtered triggers based on notification content. Learn techniques to build notifications that integrate well with automations.

    • 3:25 - Use Model
    • The Use Model action has access to the latest Apple Intelligence models with web retrieval. Use the model transcript inspector to evaluate the exact data that's passed to the model from your app's App Intent entities.

    • 6:58 - Storage
    • Storage lets shortcuts persist data between runs using Get, Set, and global storage values that sync across all of someone's devices via iCloud. Use storage in powerful ways, like to give the Use Model action a "memory". For App Intent entities, use a stable, device-consistent identifier to ensure correct recognition across devices.

Developer Footer

  • ビデオ
  • WWDC26
  • ショートカットの新機能
  • メニューを開く メニューを閉じる
    • iOS
    • iPadOS
    • macOS
    • tvOS
    • visionOS
    • watchOS
    Open Menu Close Menu
    • Swift
    • SwiftUI
    • Swift Playground
    • TestFlight
    • Xcode
    • Xcode Cloud
    • SF Symbols
    メニューを開く メニューを閉じる
    • アクセシビリティ
    • アクセサリ
    • Apple Intelligence
    • App Extension
    • App Store
    • オーディオとビデオ(英語)
    • 拡張現実
    • デザイン
    • 配信
    • 教育
    • フォント(英語)
    • ゲーム
    • ヘルスケアとフィットネス
    • アプリ内課金
    • ローカリゼーション
    • マップと位置情報
    • 機械学習とAI
    • オープンソース(英語)
    • セキュリティ
    • SafariとWeb(英語)
    メニューを開く メニューを閉じる
    • 英語ドキュメント(完全版)
    • 日本語ドキュメント(一部トピック)
    • チュートリアル
    • ダウンロード
    • フォーラム(英語)
    • ビデオ
    Open Menu Close Menu
    • サポートドキュメント
    • お問い合わせ
    • バグ報告
    • システム状況(英語)
    メニューを開く メニューを閉じる
    • Apple Developer
    • App Store Connect
    • Certificates, IDs, & Profiles(英語)
    • フィードバックアシスタント
    メニューを開く メニューを閉じる
    • 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 Research Device Program(英語)
    Open Menu Close Menu
    • Appleに相談
    • Apple Developer Center
    • App Store Awards(英語)
    • Apple Design Awards
    • Apple Developer Academy(英語)
    • WWDC
    最新ニュースを読む。
    Apple Developerアプリを入手する。
    Copyright © 2026 Apple Inc. All rights reserved.
    利用規約 プライバシーポリシー 契約とガイドライン