菜鸟教程小白 发表于 2022-12-12 10:14:28

ios7每隔一小时从我的服务器以后台模式获取数据


                                            <p><p>我正在开发一个 iPhone 应用程序,它可以使用 VOIP 从我的应用程序中调用电话。为此,我必须每隔一小时连接一次服务器以注册我的设备并使其随时可用于来电。但是在 iOS7 中,即使它处于后台模式,如何每隔一小时连接一次我的服务器。任何帮助将不胜感激。</p>

<p>谢谢,
吉润</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><a href="https://developer.apple.com/library/ios/documentation/iphone/conceptual/iphoneosprogrammingguide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html#//apple_ref/doc/uid/TP40007072-CH4-SW47" rel="noreferrer noopener nofollow">iOS App programming guide</a>中有具体信息关于实现 VoIP 应用程序 -</p>

<blockquote>
<p>To configure a VoIP app, you must do the following:</p>

<ul>
<li><p>Enable support for Voice over IP from the Background modes section of
the Capabilities tab in your Xcode project. (You can also enable this
support by including the <code>UIBackgroundModes</code> key with the voip value in
your app’s Info.plist file.) </p></li>
<li><p>Configure one of the app’s sockets for
VoIP usage. </p></li>
<li><p>Before moving to the background, call the
<code>setKeepAliveTimeout:handler:</code> method to install a handler to be
executed periodically. Your app can use this handler to maintain its
service connection.</p></li>
<li><p>Configure your audio session to handle transitions
to and from active use.</p></li>
</ul>
</blockquote>

<p>一旦您的套接字配置为使用 VoIP,iOS 将在后台为您管理它,使其保持事件状态并在有流量时通知您的应用</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios7每隔一小时从我的服务器以后台模式获取数据,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23992138/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23992138/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios7每隔一小时从我的服务器以后台模式获取数据