CINXE.COM

Procore iOS 应用程序 - iOS 要求 - Procore

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Procore iOS 应用程序 - iOS 要求 - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=4697dd37726fed7979fe7b0f4ce2bd05_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=c5d69afcac31700ff9758fde125e8285:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="7c484ec67b173d0e381e860f28099ebc685c78150a1f50dc2695450de78f141e" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="7c484ec67b173d0e381e860f28099ebc685c78150a1f50dc2695450de78f141e">{"apiToken":"xhr_2_1732484949_837013a5f5c2401915d358cecf663782af7fee0ade97bf5b2c08d7995ae50167","pageId":5527,"pageViewId":"70b7381f-6418-4fe8-8ff9-85e663fa2f85"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js"></script> <!-- Back to Top Button by Tie Dec 14 2023 --> <script defer>/*<![CDATA[*/ window.onscroll = function () { scrollFunction(); }; function scrollFunction() { if (!document.querySelector(".columbia-article-topic-category")) { const backToTopButton = document.querySelector("#back-to-top-button"); const pageText = document.querySelector(".mt-content-container"); if (pageText.getBoundingClientRect().top < -20) { backToTopButton.style.display = "block"; } else { backToTopButton.style.display = "none"; } } } function scrollToTop() { const pageText = document.querySelector(".mt-content-container"); pageText.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest", }); } /*]]>*/</script> <!-- Global Responsive Book Functions Added by Tie Jun 14 2023 --> <script>/*<![CDATA[*/ function displaySection(id){ $(".content-section").hide(); $(id).show(); var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($(window).scrollTop() > $(".content-sop").offset().top) { $([document.documentElement, document.body]).animate({ scrollTop: $(id).offset().top - 84 }, 100); } $('.toc-sop a').removeClass('selected-chapter'); str1=".toc-sop a[onclick*=\\'\\"; str3="\\']"; fin_str=str1.concat(id,str3); $(fin_str).addClass('selected-chapter'); $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); const newURL = new URL(window.location.href); newURL.hash = id; history.pushState({},'',newURL); return false; } function toggleToc(){ var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($menuButton.attr("aria-expanded") === "false") { $menuButton.attr("aria-expanded","true"); $content.attr("data-mobile-visible","false"); $toc.attr("data-mobile-visible","true"); } else { $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); } } /*]]>*/</script> <!-- Put Page ID on Page Settings Added by Tie Apr 14, 2022 --> <script>/*<![CDATA[*/ document.addEventListener("DOMContentLoaded", function (e) { if (document.querySelector("#mt-summary")) { var pageId = document.querySelector("#mt-summary").dataset.pageId; var text = document.createElement("p"); var box = document.querySelector(".mt-collapsible-section"); text.innerText = `Page ID: ${pageId}`; box.appendChild(text); var line = document.querySelector(".elm-meta-data.elm-meta-top"); if (document.querySelector("#mt-summary")) { line.style.display = "block"; box.appendChild(line); } } }); /*]]>*/</script> <!-- Define Deprecated Video Hiding Function Sitewide Added by Tie Marc 30, 2022 --> <script>/*<![CDATA[*/ function hideDeprecatedVideos() { let thisurl = window.location.href; if (thisurl.includes('Media_Library') || thisurl.includes('/tc') || thisurl.includes('/tutorials')) { $('.deprecated-video').show(); }; } $(function () { if ($('.deprecated-video').length) { hideDeprecatedVideos(); } }) /*]]>*/</script> <!-- Define Sorting functions sitewide Added by Tie Marc 11, 2022 --> <script>/*<![CDATA[*/ const language = 'zh-cn' //Change this two lines during localization const noAlphabetArray = ['zh-cn']; const compareFun = (a, b) => { return new Intl.Collator(language).compare(a.title, b.title); } let sortTerms = (elementType, section, skipFirst) => { let terms = [...section.querySelectorAll(elementType)] let firstElement = section.firstElementChild; let termHeaders = terms.map(e => e.innerText) let termObject = [] termHeaders.forEach((title, index) => { termObject.push({ title }); termObject[index].header = terms[index]; }); termObject.sort(compareFun); section.innerHTML = ''; if (skipFirst) { section.append(firstElement); } termObject.forEach((element) => { section.append(element.header); }); } const sortItems = (definitionSelector, sortItemSelector, skipFirst = false) => { let definitionsSections = [...document.querySelectorAll(definitionSelector)]; definitionsSections.forEach(section => sortTerms(sortItemSelector, section, skipFirst)); } /*]]>*/</script> <!-- Hide content from other regions Added by Tie Marc 7, 2022 --> <script>/*<![CDATA[*/ function getSubdomain() { let host = window.location.host; let subdomain = host.split(".")[0]; return subdomain; } function getLocaleBySubdomain(subdomain) { if (subdomain == "de") { return "de-de"; } if (subdomain == "es") { return "es-419"; } if (subdomain == "fr") { return "fr-fr"; } if (subdomain == "support") { return "en-us"; } return subdomain; } function getAllLocales() { var listedLocales = $(".localization-group") .map(function () { return $(this).data("locale"); }) .get(); return listedLocales; } function hideOtherLocales() { const subdomain = getSubdomain(); const locale = getLocaleBySubdomain(subdomain); let styleElement = document.createElement("style"); styleElement.setAttribute("type", "text/css"); styleElement.innerText = `.localization-group:not([data-locale*='${locale}']) {\ndisplay: none;\n}\n`; styleElement.innerText += '.localization-group[data-locale="else"] {\ndisplay: unset;\n}'; styleElement.innerText += `.localization-group[data-locale*="${locale}"] ~ .localization-group[data-locale="else"] {\ndisplay: none;\n}`; document.head.appendChild(styleElement); } $(function () { hideOtherLocales(); }) /*]]>*/</script> <!-- Collapsible Content. Added by Tie Apr 21, 2020 --> <script>/*<![CDATA[*/ $(window).on('load', function(e){ $('.collapsible').find('.trigger').on('click',function(){ $(this).closest('.collapsible').find('.col_content').slideToggle('350'); if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-down'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-down')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-right'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-down'); } else { $(this).find('.arrowclass').removeClass('fas fa-chevron-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-right'); } }); }); function colex(el) { $(el).closest(".collapsible").find(".col_content").slideToggle("350"); if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-down"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-down")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-right"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-down"); } else { $(el).find(".arrowclass").removeClass("fas fa-chevron-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-right"); } } /*]]>*/</script> <!-- Start Custom Print Style --> <!-- User ID Tracking. Added by Dean Feb 21, 2018 --> <script>/*<![CDATA[*/document.addEventListener("DOMContentLoaded", function() { var json = JSON.parse(document.getElementById('mt-global-settings').textContent) if (!json['userIsAnonymous']) { var dataLayer = window.dataLayer || {}; dataLayer.push({ 'event': 'setUserId', 'userId': json['userId'] }); window.Procore = window.Procore || {}; window.Procore.metrics = window.Procore.metrics || {}; window.Procore.metrics.user = window.Procore.metrics.user || {}; window.Procore.metrics.user.mtid = json['userId']; } }); /*]]>*/</script> <!-- End User ID Tracking --> <!-- Adobe Launch: Added 9/10/2019 by Joshua Bradley --> <script src="//assets.adobedtm.com/launch-EN162b61ce5645478888c92738b130b2f3.min.js" async="async"></script> <!-- End Adobe Launch--> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWZQ5W6');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- Start Typography --> <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6912732/682666/css/fonts.css"> <link rel="stylesheet" type="text/css" href="https://mkt-cdn.procore.com/fonts/sctogrotesk/sctogrotesk.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;display=swap" rel="stylesheet" as="style"> <!-- End Typography --> <!-- Start of FontAwesome --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <!-- End of FontAwesome --> <!-- Start Service Cloud Header for Ticket Form --> <!-- End Service Cloud Header for Ticket Form --> <!-- OneTrust Cookies Consent Notice start for procore.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="cbdfc14e-1f05-4d37-82a6-11d3228b4df5"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for procore.com --> </head> <body class="columbia-page-main columbia-article-topic-category columbia-breadcrumb-home-procore-mobile-ios-ios-requirements columbia-live no-touch columbia-lang-zh-cn columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"> <div class="mt-custom-header-div"><div class="mt-custom-header-container"><div class="mt-custom-header-logo"><a target="_self" href="https://zh-sg.support.procore.com/" rel="internal"><img src="https://zh-sg.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3Daae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13854" /><span id="support-logo">&#25903;&#25345;</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/en-sg?journey=supporttoprocore" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="dropdown dropdown-hover"><a href="#" class="dropdown-toggle mt-icon-earth mt-icon-arrow-down7" role="button"> &#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</a><ul class="dropdown-menu" id="lang-dd" style="display: none;"><li><a target="_self" href="https://es.support.procore.com/" rel="external nofollow" class="link-https">Am&eacute;rica Latina (Espa&ntilde;ol)</a></li><li><a target="_self" href="https://en-au.support.procore.com/" rel="external nofollow" class="link-https">Australia (English)</a></li><li><a target="_self" href="https://pt-br.support.procore.com/" rel="external nofollow" class="link-https">Brasil (Portugu&ecirc;s)</a></li><li><a target="_self" href="https://en-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (English)</a></li><li><a target="_self" href="https://fr-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (Fran&ccedil;ais)</a></li><li><a target="_self" href="https://de.support.procore.com/" rel="external nofollow" class="link-https">Deutschland (Deutsch)</a></li><li><a target="_self" href="https://es-es.support.procore.com/" rel="external nofollow" class="link-https">Espa&ntilde;a (Espa&ntilde;ol)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Fran&ccedil;ais)</a></li><li><a target="_self" href="https://en-gb.support.procore.com/" rel="external nofollow" class="link-https">United Kingdom (English)</a></li><li><a target="_self" href="https://support.procore.com/" rel="external nofollow" class="link-https">United States (English)</a></li><li><a target="_self" class="internal" href="https://zh-sg.support.procore.com/" rel="internal">&#26032;&#21152;&#22369;&#65288;&#31616;&#20307;&#20013;&#25991;&#65289;</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://zh-sg.support.procore.com/references/contact-support" rel="internal">&#32852;&#31995;&#20154;</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://app.procore.com?journey=supporttologin" rel="external noopener nofollow" class="link-https">&#30331;&#24405; Procore &#24212;&#29992;</a></li></ul></div></div><div class="mt-prepend-home mt-custom-home elm-nav" id="header-search"><div class="elm-nav-container"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"\u641c\u7d22","Help.Widget.label.text":"\u67e5\u8be2","Help.Widget.placeholder.text":"\u6211\u4eec\u80fd\u4e3a\u4f60\u63d0\u4f9b\u54ea\u4e9b\u5e2e\u52a9\uff1f"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path=""></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(document).ready(function(){ $('.mt-custom-header-right .dropdown').hover(function(){ $(this).children('.dropdown-menu').toggle(); }) });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Adds Training Center Help action to Pro Member Nav. Dean Jan 11, 2018 */ $(document).ready(function(){ $('.elm-header-user-nav.elm-nav .elm-nav-container>ol').prepend('<li><a class="mt-icon-editor-training-link" style="display:inline" target="_blank" href="/tc/1-Author_Training_Center_Documentation">Training Center Help</a></li>'); });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Procore"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_13854/1681518206-logo.png" alt="Procore" title="Procore"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://zh-sg.support.procore.com/Special:AuthenticationProviders?returntotitle=procore-mobile-ios%2Fios-requirements" title="登录"> 登录 </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://zh-sg.support.procore.com/Special:UserPassword" title="找回丢失的密码"> 忘记密码 </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="" /> <label class="mt-label" for="mt-site-search-input"> 搜索 </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="我们可如何帮助您?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> 搜索 </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://zh-sg.support.procore.com/"> <span class="mt-icon-article-category mt-icon-article-home"></span> Home </a> </li> <li> <a href="https://zh-sg.support.procore.com/procore-mobile-ios"> <span class="mt-icon-article-category"></span> Procore 移动版 (iOS) </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> Procore iOS 应用程序 - iOS 要求 </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-09-18T16:34:28Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="目录" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">目录</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#Procore_iOS_.E5.BA.94.E7.94.A8.E7.A8.8B.E5.BA.8F.E7.9A.84.E6.93.8D.E4.BD.9C.E7.B3.BB.E7.BB.9F.E8.A6.81.E6.B1.82" rel="internal">Procore iOS &#24212;&#29992;&#31243;&#24207;&#30340;&#25805;&#20316;&#31995;&#32479;&#35201;&#27714;</a><ol><li><a href="#.E5.A6.82.E6.9E.9C.E6.88.91.E7.9A.84.E8.AE.BE.E5.A4.87.E8.BF.90.E8.A1.8C.E7.9A.84.E6.98.AF.E6.97.A7.E7.89.88_iOS.EF.BC.8C.E4.BC.9A.E5.8F.91.E7.94.9F.E4.BB.80.E4.B9.88.EF.BC.9F" rel="internal">&#22914;&#26524;&#25105;&#30340;&#35774;&#22791;&#36816;&#34892;&#30340;&#26159;&#26087;&#29256; iOS&#65292;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</a></li><li><a href="#.E5.A6.82.E4.BD.95.E6.9B.B4.E6.96.B0.E6.88.91.E7.9A.84.E8.AE.BE.E5.A4.87.EF.BC.9F" rel="internal">&#22914;&#20309;&#26356;&#26032;&#25105;&#30340;&#35774;&#22791;&#65311;</a></li><li><a href="#.E4.B8.8E.E5.93.AA.E4.BA.9B.E8.AE.BE.E5.A4.87.E5.85.BC.E5.AE.B9.EF.BC.9F" rel="internal">&#19982;&#21738;&#20123;&#35774;&#22791;&#20860;&#23481;&#65311;</a></li></ol></li><li><a href="#.E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85" rel="internal">&#21478;&#35831;&#21442;&#38405;</a></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_faq.png");}/*]]>*/</style> <div mt-section-origin="procore-mobile-ios/ios-requirements" class="mt-section" id="section_1"><span id="Procore_iOS_.E5.BA.94.E7.94.A8.E7.A8.8B.E5.BA.8F.E7.9A.84.E6.93.8D.E4.BD.9C.E7.B3.BB.E7.BB.9F.E8.A6.81.E6.B1.82"></span><h3 class="editable">Procore iOS &#24212;&#29992;&#31243;&#24207;&#30340;&#25805;&#20316;&#31995;&#32479;&#35201;&#27714;</h3> <p>Procore &#24212;&#29992;&#31243;&#24207;&#30340;&#26368;&#20302;&#25805;&#20316;&#31995;&#32479;&#35201;&#27714;&#26159; iOS 16.1&#12290; Procore &#24212;&#29992;&#31243;&#24207;&#36824;&#25903;&#25345; iOS 17&#12290;&#19981;&#25903;&#25345;Beta OS&#29256;&#26412;&#12290;</p> <p>&#20026;&#20102;&#32487;&#32493;&#33719;&#24471;&#33258;&#21160; Procore iOS &#24212;&#29992;&#31243;&#24207;&#22686;&#24378;&#21151;&#33021;&#21644;&#38169;&#35823;&#20462;&#22797;&#65292;&#20320;&#30340; iOS &#31227;&#21160;&#35774;&#22791;&#38656;&#35201;&#33267;&#23569;&#26356;&#26032;&#21040; iOS 16.1&#65292;&#20294;&#25105;&#20204;&#24314;&#35758;&#20320;&#23558;&#31227;&#21160;&#35774;&#22791;&#26356;&#26032;&#21040;&#26368;&#26032;&#29256;&#26412;&#30340; iOS &#20197;&#33719;&#24471;&#26368;&#20339;&#20307;&#39564;&#12290; &#20170;&#22825;&#20351;&#29992; Procore &#24212;&#29992;&#31243;&#24207;&#30340;&#22823;&#22810;&#25968;&#35774;&#22791;&#24050;&#32463;&#36816;&#34892;&#20102;&#21463;&#25903;&#25345;&#30340; iOS &#29256;&#26412;&#65292;&#25110;&#32773;&#26377;&#36164;&#26684;&#20813;&#36153;&#26356;&#26032;&#21040; iOS 17&#12290; &#22914;&#26524;&#20320;&#30340;&#35774;&#22791;&#26080;&#27861;&#36816;&#34892; iOS 16 &#25110;iPad OS 16&#65292;&#25105;&#20204;&#24314;&#35758;&#21319;&#32423;&#35774;&#22791;&#20197;&#30830;&#20445;&#32487;&#32493;&#20026;&#24212;&#29992;&#31243;&#24207;&#25552;&#20379;&#25903;&#25345;&#12290; &#35831;&#21442;&#38405;&#19982;<a data-track-click="Content, Link, Which devices are compatible?" title="iOS &#29256; Procore &#24212;&#29992;&#31243;&#24207;:&#19981;&#20877;&#20026; iOS 14 &#25552;&#20379;&#26356;&#26032;" class="mt-disabled" rel="broken">&#21738;&#20123;&#35774;&#22791;&#20860;&#23481;&#65311;</a>&#20013;&#30340;&#20860;&#23481;&#35774;&#22791;&#21015;&#34920;&#12290;&#37096;&#20998;&#12290;</p> <div mt-section-origin="procore-mobile-ios/ios-requirements" class="mt-section" id="section_2"><span id=".E5.A6.82.E6.9E.9C.E6.88.91.E7.9A.84.E8.AE.BE.E5.A4.87.E8.BF.90.E8.A1.8C.E7.9A.84.E6.98.AF.E6.97.A7.E7.89.88_iOS.EF.BC.8C.E4.BC.9A.E5.8F.91.E7.94.9F.E4.BB.80.E4.B9.88.EF.BC.9F"></span><h4 class="editable">&#22914;&#26524;&#25105;&#30340;&#35774;&#22791;&#36816;&#34892;&#30340;&#26159;&#26087;&#29256; iOS&#65292;&#20250;&#21457;&#29983;&#20160;&#20040;&#65311;</h4> <p>&#22914;&#26524;&#19981;&#23558;&#31227;&#21160;&#35774;&#22791;&#26356;&#26032;&#21040; iOS 16.1 &#25110;&#26356;&#39640;&#29256;&#26412;&#65292;&#20173;&#28982;&#21487;&#20197;&#20351;&#29992;&#35774;&#22791;&#19978;&#24050;&#23433;&#35013;&#30340; Procore &#24212;&#29992;&#31243;&#24207;&#29256;&#26412;&#65292;&#20294;&#23558;&#26080;&#27861;&#25509;&#25910;&#24212;&#29992;&#31243;&#24207;&#30340;&#24212;&#29992;&#31243;&#24207;&#26356;&#26032;&#25110;&#38169;&#35823;&#20462;&#22797;&#12290; &#25105;&#20204;&#26080;&#27861;&#20445;&#35777;&#24050;&#23433;&#35013;&#30340;&#29256;&#26412;&#21487;&#20197;&#32487;&#32493;&#24037;&#20316;&#22810;&#38271;&#26102;&#38388;&#12290;</p> </div><div mt-section-origin="procore-mobile-ios/ios-requirements" class="mt-section" id="section_3"><span id=".E5.A6.82.E4.BD.95.E6.9B.B4.E6.96.B0.E6.88.91.E7.9A.84.E8.AE.BE.E5.A4.87.EF.BC.9F"></span><h4 class="editable">&#22914;&#20309;&#26356;&#26032;&#25105;&#30340;&#35774;&#22791;&#65311;</h4> <p>&#21487;&#20197;&#36890;&#36807;&#23548;&#33322;&#21040;&#35774;&#32622; &gt; &#19968;&#33324; &gt; &#36719;&#20214;&#26356;&#26032;&#26469;&#26356;&#26032;&#20320;&#30340;&#35774;&#22791;&#12290;&#35201;&#26597;&#30475;&#26377;&#20851;&#26356;&#26032;&#35774;&#22791;&#30340;&#26356;&#22810;&#20449;&#24687;&#65292;&#35831;&#21442;&#38405; Apple &#30340;&#25903;&#25345; &#25991;&#31456;: <a data-track-click="Content, Link, Update your iPhone iPad or iPod touch" href="https://support.apple.com/en-us/HT204204" rel="external noopener nofollow" target="_blank" title="https://support.apple.com/en-us/HT204204">&#26356;&#26032;iPhone&#12289; iPad&#25110;iPod Touch</a> &#12290;<br /> <em><em>&#27880;&#24847;:</em></em>&#22914;&#26524;&#35774;&#22791;&#30001;&#20844;&#21496;&#21457;&#25918;&#21644;&#31649;&#29702;&#65292;&#21487;&#33021;&#38656;&#35201;&#32852;&#31995; IT &#37096;&#38376;&#25191;&#34892;&#26356;&#26032;&#12290;</p> </div><div mt-section-origin="procore-mobile-ios/ios-requirements" class="mt-section" id="section_4"><span id=".E4.B8.8E.E5.93.AA.E4.BA.9B.E8.AE.BE.E5.A4.87.E5.85.BC.E5.AE.B9.EF.BC.9F"></span><h4 class="editable">&#19982;&#21738;&#20123;&#35774;&#22791;&#20860;&#23481;&#65311;</h4> <p>&#20197;&#19979;&#35774;&#22791;<em>&#19982;</em>iOS 16&#12289;17 &#20197;&#21450;iPad OS 16&#12289;17 &#20860;&#23481;:<br /><em><em>&#27880;&#24847;:</em></em>&#19979;&#38754;&#26410;&#21015;&#20986;&#30340;&#36739;&#26032;&#35774;&#22791;&#20063;&#21487;&#29992;&#20110; Procore iOS &#24212;&#29992;&#31243;&#24207;&#65292;&#20294;&#21487;&#33021;&#38656;&#35201;&#26356;&#39640;&#30340;&#36719;&#20214;&#29256;&#26412;&#12290;</p> <table class="mt-responsive-table"> <tbody> <tr> <td class="mt-noheading mt-column-width-40"> <p><strong><strong>iPhone</strong></strong></p> <ul> <li>iPhone 15</li> <li>iPhone 15 Plus</li> <li>iPhone 15 &#19987;&#19994;&#29256;</li> <li>iPhone 15 &#19987;&#19994;&#29256;</li> <li>iPhone 14</li> <li>iPhone 14 Plus</li> <li>iPhone 14 &#19987;&#19994;&#29256;</li> <li>iPhone 14 Pro &#26368;&#22823;</li> <li>iPhone 13</li> <li>iPhone 13 mini</li> <li>iPhone 13 &#19987;&#19994;&#29256;</li> <li>iPhone 13 Pro &#26368;&#22823;</li> <li>iPhone 12</li> <li>iPhone 12 &#36855;&#20320;</li> <li>iPhone 12 &#19987;&#19994;&#29256;</li> <li>iPhone 12 Pro &#26368;&#22823;</li> <li>iPhone 11</li> <li>iPhone 11 &#19987;&#19994;&#29256;</li> <li>iPhone 11 Pro &#26368;&#22823;</li> <li>iPhone Xr</li> <li>iPhone Xs</li> <li>iPhone Xs Max</li> <li>iPhone SE&#65288;&#31532; 3 &#20195;&#65289;</li> <li>iPhone SE&#65288;&#31532;&#20108;&#20195;&#65289;</li> </ul> <p>&nbsp;</p> <p><strong><strong>&#25903;&#25345; iOS 16 &#20294;&#19981;&#25903;&#25345; iOS 17 &#30340; iPhone:</strong></strong></p> <ul> <li>iPhone X</li> <li>iPhone 8</li> <li>iPhone 8 Plus</li> <li>iPod touch&#65288;&#31532; 7 &#20195;&#65289;</li> </ul> </td> <td class="mt-noheading mt-column-width-60"> <p><strong><strong>iPad</strong></strong></p> <ul> <li>12.9 &#33521;&#23544;iPad Pro &#65288;&#31532; 6 &#20195;&#65289;</li> <li>iPad Pro 12.9 &#33521;&#23544;&#65288;&#31532;&#20116;&#20195;&#65289;</li> <li>iPad Pro 12.9 &#33521;&#23544;&#65288;&#31532;&#22235;&#20195;&#65289;</li> <li>iPad Pro 12.9 &#33521;&#23544;&#65288;&#31532;&#19977;&#20195;&#65289;</li> <li>iPad Pro 12.9 &#33521;&#23544;&#65288;&#31532;&#20108;&#20195;&#65289;</li> <li>iPad Pro 11 &#33521;&#23544;&#65288;&#31532; 6 &#20195;&#65289;</li> <li>iPad Pro 11 &#33521;&#23544;&#65288;&#31532;&#20116;&#20195;&#65289;</li> <li>iPad Pro 11 &#33521;&#23544;&#65288;&#31532; 4 &#20195;&#65289;</li> <li>iPad Pro 11 &#33521;&#23544;&#65288;&#31532; 3 &#20195;&#65289;</li> <li>iPad Pro 11 &#33521;&#23544;&#65288;&#31532;&#20108;&#20195;&#65289;</li> <li>iPad Pro 11 &#33521;&#23544;&#65288;&#31532;&#19968;&#20195;&#65289;</li> <li>iPad Pro 10.5 &#33521;&#23544;</li> <li>iPad&#65288;&#31532; 10 &#20195;&#65289;</li> <li>iPad&#65288;&#31532; 9 &#20195;&#65289;</li> <li>iPad&#65288;&#31532; 8 &#20195;&#65289;</li> <li>iPad&#65288;&#31532;&#19971;&#20195;&#65289;</li> <li>iPad&#65288;&#31532;&#20845;&#20195;&#65289;</li> <li>iPad mini&#65288;&#31532;&#20845;&#20195;&#65289;</li> <li>iPad mini&#65288;&#31532;&#20116;&#20195;&#65289;</li> <li>iPad Air&#65288;&#31532;&#20116;&#20195;&#65289;</li> <li>iPad Air&#65288;&#31532;&#22235;&#20195;&#65289;</li> <li>iPad Air&#65288;&#31532;&#19977;&#20195;&#65289;</li> </ul> <p>&nbsp;</p> <p><strong><strong>&#25903;&#25345; iOS 16 &#20294;&#19981;&#25903;&#25345; iOS 17 &#30340; iPad:</strong></strong></p> <ul> <li>12.9 &#33521;&#23544;iPad Pro &#65288;&#31532;&#19968;&#20195;&#65289;</li> <li>iPad Pro 9.7 &#33521;&#23544;</li> <li>iPad &#65288;&#31532;&#20116;&#20195;&#65289;</li> </ul> </td> </tr> </tbody> </table> </div></div><div mt-section-origin="procore-mobile-ios/ios-requirements" class="mt-section" id="section_5"><span id=".E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85"></span><h2 class="editable">&#21478;&#35831;&#21442;&#38405;</h2> <ul> <li><a title="&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;" href="https://zh-sg.support.procore.com/faq/why-does-procore-stop-supporting-older-versions-of-ios-and-android" rel="internal">&#20026;&#20160;&#20040; Procore &#20572;&#27490;&#25903;&#25345;&#26087;&#29256;&#26412;&#30340; iOS &#21644; Android&#65311;</a></li> <li><a title="&#24320;&#22987;&#20351;&#29992;" href="https://zh-sg.support.procore.com/procore-mobile-ios/getting-started" rel="internal">&#24320;&#22987;&#20351;&#29992;</a></li> <li><a title="&#26356;&#26032; iOS &#29256; Procore &#24212;&#29992;&#31243;&#24207;" href="https://zh-sg.support.procore.com/procore-mobile-ios/getting-started/update-the-procore-ios-app" rel="internal">&#26356;&#26032; Procore iOS &#24212;&#29992;&#31243;&#24207;</a><br /></li> </ul> <div class="mt-category-container mt-subpage-listings-container noindex"><ul class="mt-sortable-listings-container " id="mt-sortable" data-user-can-edit="false" data-page-id="5527"></ul><script type="application/json" id="mt-localizations-ordered-subpages">/*<![CDATA[*/{"MindTouch.IDF3.label.drag-n-drop":"\u62d6\u52a8","MindTouch.IDF3.label.reveal.showAll":"\u663e\u793a\u5168\u90e8","MindTouch.IDF3.label.reveal.showLess":"\u663e\u793a\u90e8\u5206","MindTouch.IDF3.warning.page-order-limit-exceeded":"Sorry, there are too many child pages to safely reorder. The greatest number of children you can reorder on a page is {0}."}/*]]>*/</script></div> </div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="返回到本文章顶部">返回顶部</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://zh-sg.support.procore.com/procore-mobile-ios/procore-for-ios-troubleshooting-tips" title="Procore iOS 应用程序 - 故障排除提示"><span>Procore iOS 应用程序 - 故障排除提示</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/product-releases" title="产品发布"><span>产品发布</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">&copy; 版权所有 2024 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> CXone Expert提供 <span class="mt-registered">&reg;</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"> <div class="mt-custom-footer-container"><div class="mt-custom-footer-left"><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a target="_blank" href="https://www.linkedin.com/company/procore-technologies" rel="external noopener nofollow" class="mt-icon-linkedin2 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.facebook.com/procore.tech" rel="external noopener nofollow" class="mt-icon-facebook5 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.twitter.com/procoretech" rel="external noopener nofollow" class="mt-icon-twitter4 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.instagram.com/procoretech" rel="external noopener nofollow" class="mt-icon-instagram3 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.youtube.com/user/ProcoreVideo" rel="external noopener nofollow" class="mt-icon-youtube link-https"></a></li></ul></div><div class="mt-custom-footer-right"><div class="mt-custom-footer-copyright"><span>&copy; 2024 Procore Technologies, Inc.</span></div><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/privacy" target="_blank" rel="external noopener nofollow" class="link-https">&#38544;&#31169;&#22768;&#26126;</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/terms-of-service" target="_blank" rel="external noopener nofollow" class="link-https">&#26381;&#21153;&#26465;&#27454;</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/en-sg" target="_blank" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="mt-custom-footer-link" id="last-item"><a href="https://app.procore.com/mindtouch/auth" target="_blank" rel="external noopener nofollow" class="link-https">&#30331;&#24405;</a></li></ul></div></div> <script type="text/javascript">/*<![CDATA[*/ <!-- Change default from Draft to Live in Edit and New screens. Added by Dean May 13, 2020 --> $("a.mt-icon-new-page").click(function () { setTimeout( function () { $("label[for='mt-new-templates-create-live']").click(); }, 10000); });/*]]>*/</script> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13854"></script><!-- Scroll to Top Button --> <div><button id="back-to-top-button" onclick="scrollToTop()"><i class="fa fa-angle-up">&zwnj;&zwj;&#8203;</i></button></div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWZQ5W6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10