<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                # 保護用戶的隱私 保護個人數據,并尊重用戶對數據使用方式的偏好。 骨架 * UIKit的 在本頁面 * [概觀](https://developer.apple.com/documentation/uikit/core_app/protecting_the_user_s_privacy#overview) * [話題](https://developer.apple.com/documentation/uikit/core_app/protecting_the_user_s_privacy#topics) * [也可以看看](https://developer.apple.com/documentation/uikit/core_app/protecting_the_user_s_privacy#see-also) ## 概觀 [鏈接](1017519#jump) 設計用戶隱私很重要。大多數Apple設備都包含用戶不希望向應用程序或外部實體公開的個人數據。如果您的應用訪問或使用數據不當,用戶可能會停止使用您的應用甚至將其從設備中刪除。 僅在獲得用戶根據適用法律獲得的知情同意的情況下訪問用戶或設備數據。此外,采取適當措施保護用戶和設備數據,并對使用方式保持透明。 ### 審查政府和行業來源的指南 咨詢這些文件: * [移動隱私披露:通過透明度建立信任](https://www.ftc.gov/sites/default/files/documents/reports/mobile-privacy-disclosures-building-trust-through-transparency-federal-trade-commission-staff-report/130201mobileprivacyreport.pdf)。美國聯邦貿易委員會關于移動隱私的報告。 * [關于智能設備上的應用程序的意見02/2013](https://ec.europa.eu/justice/article-29/documentation/opinion-recommendation/files/2013/wp202_en.pdf)。歐盟數據保護專員關于移動應用程序數據保護的意見。 * [隨時隨地的隱私:移動生態系統的建議](https://oag.ca.gov/sites/all/files/agweb/pdfs/privacy/privacy_on_the_go.pdf)。加利福尼亞州檢察長對移動隱私的建議。 * 智能手機隱私倡議(2012年)[英文](http://www.soumu.go.jp/main_sosiki/joho_tsusin/eng/presentation/pdf/Initiative.pdf)或[日文](http://www.soumu.go.jp/main_content/000171225.pdf)和智能手機隱私倡議II(2013年)[英文](http://www.soumu.go.jp/main_sosiki/joho_tsusin/eng/presentation/pdf/Summary_II.pdf)或[日文](http://www.soumu.go.jp/main_content/000247654.pdf)。日本內政和通信部的智能手機隱私倡議。 ### 僅在您的應用需要數據時請求訪問權限 在您的應用需要數據時,請求訪問敏感的用戶或設備數據,如位置,聯系人和照片。在應用程序的文件中提供一個目的字符串(有時稱為用法描述字符串),系統可以向用戶提供該字符串,解釋您的應用程序需要訪問的原因。在用戶未授予對所請求數據的訪問權限的情況下,提供合理的回退行為。有關更多詳細信息,請參閱[訪問受保護資源](https://developer.apple.com/documentation/uikit/core_app/protecting_the_user_s_privacy/accessing_protected_resources)。`Info.plist`[](https://developer.apple.com/documentation/uikit/core_app/protecting_the_user_s_privacy/accessing_protected_resources) ### 透明如何使用數據 例如,當您將應用程序提交到App Store時,請將您的隱私策略或聲明的URL指定為App Store Connect元數據的一部分。您還可以在應用說明中匯總該政策或聲明。 ### 授予用戶對數據的控制權并保護您收集的數據 尊重用戶的偏好,并采取合理措施保護您在應用中收集的數據: * 提供允許用戶禁用對敏感信息的訪問的設置。操作系統通過“設置”應用程序的“隱私”菜單自動為受保護的系統資源(如位置,聯系人和健康數據)執行此操作。將此行為擴展到從這些源緩存或直接收集的任何數據。例如,如果您的用戶構建包含個人信息的社交媒體配置文件,請為他們提供刪除數據的方法(包括您擁有的任何服務器副本)。 * 在iOS中存儲文件時,請使用適用于您應用的最強數據保護級別,如[加密應用程序文件中所述](https://developer.apple.com/documentation/uikit/core_app/protecting_the_user_s_privacy/encrypting_your_app_s_files)。通過網絡發送用戶或設備數據時使用App Transport Security,如[NSAppTransportSecurity中所述](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/plist/info/NSAppTransportSecurity)。 * 如果您的應用使用該類,請尊重其屬性的值。如果用戶將該屬性設置為false,則僅將該類用于有限的廣告目的,例如頻次上限,歸因,轉化事件,估算唯一身份用戶數,廣告欺詐檢測和調試。有關其他信息,請參閱[AdSupport](https://developer.apple.com/documentation/adsupport)框架。[`ASIdentifierManager`](https://developer.apple.com/documentation/adsupport/asidentifiermanager)[`isAdvertisingTrackingEnabled`](https://developer.apple.com/documentation/adsupport/asidentifiermanager/1614148-isadvertisingtrackingenabled)[`ASIdentifierManager`](https://developer.apple.com/documentation/adsupport/asidentifiermanager)[](https://developer.apple.com/documentation/adsupport) * 如果你必須識別用戶堅持,使用的財產類或對財產類。[`identifierForVendor`](https://developer.apple.com/documentation/uikit/uidevice/1620059-identifierforvendor)[`UIDevice`](https://developer.apple.com/documentation/uikit/uidevice)[`advertisingIdentifier`](https://developer.apple.com/documentation/adsupport/asidentifiermanager/1614151-advertisingidentifier)[`ASIdentifierManager`](https://developer.apple.com/documentation/adsupport/asidentifiermanager) ### 使用所需的最小數據量 請求并使用完成給定任務所需的最少量的用戶或設備數據。不要出于不必要或非顯而易見的原因尋求訪問或收集數據,或者因為您認為以后可能有用。 如果您的應用支持音頻輸入,請將音頻會話配置為僅在您實際計劃開始錄制的位置進行錄制。如果您不打算立即錄制,請不要在啟動時配置音頻會話以進行錄制。當應用配置其音頻會話進行錄制時,系統會向用戶發出警報,并為用戶提供禁用應用錄制的選項。 <span id="jump2"> 跳轉到的位置 </span>
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看