zoukankan      html  css  js  c++  java
  • 配置获取隐私数据权限声明

    iOS 10的一大变化是更强的隐私数据保护。在文档中是这么描述的:

    You must statically declare your app’s intended use of protected data classes by including the appropriate purpose string keys in your Info.plist file.

    简单的说访问用户数据都需要现在Info.plist中声明,否则会crash。

    这些用户数据包括:

    Contacts, Calendar, Reminders, Photos, Bluetooth Sharing, Microphone, Camera, Location, Health, HomeKit, Media Library, Motion, CallKit, Speech Recognition, SiriKit, TV Provider.

    10之前只需要获取位置时配置,现在更严格了,比如需要调用相册访问权限,也需要在Info.plist中配置privacy。

    好在这些key的名字在Xcode 8中已经有了自动补全。添加一个属性,输入Privacy后就会出现自动提示:

     

    后面填的string会在弹出用户允许时展示在描述里。谢谢@Nidom提醒,如果描述空着提交AppStore时会拒绝。

     

    相关链接:

    原文:Privacy Settings in iOS 10

    http://useyourloaf.com/blog/privacy-settings-in-ios-10/

    WWDC 2016 Session 709 Engineering Privacy for Your Users

    https://developer.apple.com/videos/play/wwdc2016/709/

    Full list of Info.plist keys

    http://t.cn/z8BEnXr

  • 相关阅读:
    DTM DEM DSM 介绍
    VC自定义消息
    一句话设计模式基本原则
    抽空写了一个ICON图标的转换程序
    (转载)C# 中的委托和事件
    类的字段和静态字段的使用
    Command 对象总结
    使用 DataReader 检索数据的步骤
    分享一部电影
    C#处理ACCESS数据库
  • 原文地址:https://www.cnblogs.com/fengmin/p/5880455.html
Copyright © 2011-2022 走看看