> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# iOS SDKの使い方

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

<Frame center>
  <img src="https://mintcdn.com/box/RSRlfgG5DaoSHrVz/ja/guides/mobile/ios/quick-start/xcode-code-snippet.png?fit=max&auto=format&n=RSRlfgG5DaoSHrVz&q=85&s=1ecf64fd2979c228709bc6726f77fca1" alt="iOSエミュレータ" width="1068" height="316" data-path="ja/guides/mobile/ios/quick-start/xcode-code-snippet.png" />
</Frame>

Box iOS SDKは、iOSプロジェクトにBox APIを追加するための[Swift言語](https://developer.apple.com/swift/)ラッパーです。

## 要件

Box iOS SDKとこのクイックスタートの使用を開始するには、以下のものが必要です。

* iOS 11.0以降/Mac OS X 10.13以降
* Xcode 10.0以降

## 概要

このガイドでは、以下の手順を説明します。

1. Xcodeで<Link href="/guides/mobile/ios/quick-start/create-ios-app">新しいiOSアプリを作成</Link>します。
2. プロジェクトに<Link href="/guides/mobile/ios/quick-start/install-ios-sdk">iOS SDKをインストール</Link>します。
3. iOS SDKからBox APIにアクセスできるように<Link href="/guides/mobile/ios/quick-start/configure-box-app">Boxアプリを設定</Link>します。
4. iOS SDKを使用してBox APIに対する<Link href="/guides/mobile/ios/quick-start/make-api-call">APIコールを実行</Link>します。
