ios - 多人连接广告商进度跟踪
<p><p>我以这种方式在 ios7 中使用多点连接发送文件:</p>
<pre><code>[browser invitePeer:key
toSession:session
withContext:myData
timeout:interval];
</code></pre>
<p>而另一个用户以这种方式接收它:</p>
<pre><code>- (void) advertiser:(MCNearbyServiceAdvertiser *)advertiser
didReceiveInvitationFromPeer:(MCPeerID *)peerID
withContext:(NSData *)context
invitationHandler:(void(^)(BOOL accept,
MCSession *session))invitationHandler{
</code></pre>
<p>问题是某些文件很大,例如30mb,需要一段时间。我想进行某种进度跟踪。这可能吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>NSProgress 通过委托(delegate)方法传递</p>
<pre><code>– session:didStartReceivingResourceWithName:fromPeer:withProgress:
</code></pre>
<p>可用于跟踪进度,直到</p>
<pre><code>– session:didFinishReceivingResourceWithName:fromPeer:atURL:withError:
</code></pre>
<p>被称为</p></p>
<p style="font-size: 20px;">关于ios - 多人连接广告商进度跟踪,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19070342/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19070342/
</a>
</p>
页:
[1]