美文网首页
iOS 权限配置---记录

iOS 权限配置---记录

作者: 秦锭 | 来源:发表于2019-06-11 16:39 被阅读0次
    
    <!-- 相册 --> 
    <key>NSPhotoLibraryUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 相机 --> 
    <key>NSCameraUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 通讯录 --> 
    <key>NSContactsUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 麦克风 --> 
    <key>NSMicrophoneUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 位置 --> 
    <key>NSLocationUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 在使用期间访问位置 --> 
    <key>NSLocationWhenInUseUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 始终访问位置 --> 
    <key>NSLocationAlwaysUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 日历 --> 
    <key>NSCalendarsUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 提醒事项 --> 
    <key>NSRemindersUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 运动与健身 --> 
    <key>NSMotionUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 健康更新 --> 
    <key>NSHealthUpdateUsageDescription</key> 
    <string>写APP什么时间使用 </string> 
    
    <!-- 健康分享 --> 
    <key>NSHealthShareUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 蓝牙 --> 
    <key>NSBluetoothPeripheralUsageDescription</key> 
    <string>写APP什么时间使用</string> 
    
    <!-- 媒体资料库 --> 
    <key>NSAppleMusicUsageDescription</key> 
    <string>写APP什么时间使用</string>
    
    

    相关文章

      网友评论

          本文标题:iOS 权限配置---记录

          本文链接:https://www.haomeiwen.com/subject/uvxnvqtx.html