IOS 10 due to Apple health cause flash back crash

Source: Internet
Author: User

If Apple health is called in the app, a flashback will appear in the iOS10.
The reasons for the console report are:

Terminating app due to uncaught exception ' nsinvalidargumentexception ', Reason: ' nshealthupdateusagedescription must is s Et in the app's info.plist in order to request write authorization. '

This is because we want to declare Apple's health usage rights in the Info.plist file, so add the following key to the Info.plist.

Request Write
  <key>NSHealthUpdateUsageDescription</key><string>some string value stating the reason</string>
Request Read
   <key>NSHealthShareUsageDescription</key>    <string>some string value stating the reason</string>

Paste_image.png

Related issues

In addition iOS 10 other permissions correspond to the following key:

Camera Permission Description:
    <key>NSCameraUsageDescription</key>    <string>cameraDesciption</string>
Correspondence Record:
    <key>NSContactsUsageDescription</key>    <string>contactsDesciption</string>
Microphone:
<key>NSMicrophoneUsageDescription</key>    <string>microphoneDesciption</string>
Camera:
<key>NSPhotoLibraryUsageDescription</key>    <string>photoLibraryDesciption</string>

IOS 10 due to Apple health cause flash back crash

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.