ios - 在 Share Extension iOS 上显示网络事件指示器
<p><p>通常,在主应用程序中,我们可以使用它来显示网络事件指示器。 </p>
<pre><code>[ setNetworkActivityIndicatorVisible:YES];
</code></pre>
<p>但是,在共享扩展中,我们没有 。如何在共享扩展中显示网络事件指示器? </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您只是<strong>没有</strong>从 iOS 共享扩展中访问 sharedApplication 对象,因此不能使用该对象上的任何方法。</p>
<p> <a href="https://developer.apple.com/library/content/documentation/General/Conceptual/ExtensibilityPG/ExtensionOverview.html" rel="noreferrer noopener nofollow">take a look</a>部分:“某些 API 不适用于应用扩展”</p>
<p>使用 <a href="https://developer.apple.com/reference/uikit/uiactivityindicatorview" rel="noreferrer noopener nofollow">UIActivityIndicatorView</a>相反,您甚至可以将其定位到状态栏。</p></p>
<p style="font-size: 20px;">关于ios - 在 Share Extension iOS 上显示网络事件指示器,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/33428515/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/33428515/
</a>
</p>
页:
[1]