LoginSignup
33
34

More than 5 years have passed since last update.

iOS 10対応確認項目メモ

Last updated at Posted at 2016-09-02

目的

  • xcode8でビルドを通し、ios10で正常に動くようにするためのチェック項目
  • 個人的なチェックの意味でまとめます

ATS

  • アプリ内でWebViewをつかっている場合はNSAllowsArbitraryLoadsInWebContentYESにする
  • ios10とios9での動きを確認する
  • NSAllowsArbitraryLoadsをYESにする正当な理由があるか検討する
  • 使っているライブラリが対応しているか確認する

ユーザーデータへのアクセス

  • ユーザーデータへアクセスの目的をinfo.plistに記載している確認
  • etc.カメラ,フォトライブラリ
<dict>
    <key>NSPhotoLibraryUsageDescription</key>
    <string>フォトライブラリにアクセスする目的を書く</string>
</dict>

deprecatedになったメソッドを置き換える

  • 通知を使っているアプリはUserNotificationsのFrameworkに書き換える

参考URL

33
34
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
33
34