菜鸟教程小白 发表于 2022-12-13 05:41:24

ios - iPhone SDK : GameKit and large files + connection lost


                                            <p><p>我一直在玩 GameKit,但现在我面临着非常严重的困难。</p>

<p>我将通过蓝牙发送更大的文件 - 1-2MB。我已经准备了一个数据包(每个大约 8kB)。</p>

<p>我的应用程序按照以下方案所述运行:</p>

<pre><code>iPhone - sending header: file divided into 25 parts
iPod - received header: OK I got it waiting for 25 parts
iPhone - sending part #1
iPod - received part #1 send next
iPhone - sending part #2
iPod - received part #2 send next
...
iPhone - sending part #24
iPod - received part #24 send next
iPhone - sending part #25
iPod receiving part #25 processing file
</code></pre>

<p>我使用以下方式发送文件部分和消息(确认发送):</p>

<pre><code>;
</code></pre>

<p>并接收数据:</p>

<pre><code>- (void)receiveData:(NSData *)data fromPeer:(NSString *)peer inSession: (GKSession *)session context:(void *)context
</code></pre>

<p>我想知道您如何处理蓝牙传输过程中可能出现的一些问题。浏览文档 GKSessionDelegate 不会给我任何数据是否已交付的信息。</p>

<p>在 90% 的情况下,传输工作正常,但有时它会突然停止并且在不重新连接/重新启动应用程序的情况下无法继续。</p>

<p>如果我在 1 秒内没有得到响应,我试图发明一个简单的解决方案来重新设置数据:</p>

<pre><code>-(void)sendAgain {
    ;
}
-(void)sendData:(NSData *)data {
    bufor = ;

    timeoutTimer = ;

    ;
}
</code></pre>

<p>如果发件人收到文件部分成功传送的确认,timeOutTimer 无效。但事实上,当我实现这个解决方案时,问题就更多了。</p>

<p>桌面上的设备彼此相邻。</p>

<p>您如何处理设备之间“未传递”数据的问题?它只是一个工具,但在开发游戏时它怎么会烦人呢?</p>

<p>顺便说一句,发送简短的聊天消息从来没有造成任何问题,而且我正在使用相同的方法。</p>

<p>事实上,连接很少会丢失,只是数据喜欢在空中丢失。我已经在划分部分,所以数据的大小大约是 8kb,这真的让图像的传输真的很慢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>GameKit 框架在这一点上并不是很可靠,即使对于我正在开发的游戏的简单数据交换也是如此。我不会用它来传输大数据,你只是在问头。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iPhone SDK : GameKit and large files &#43; connection lost,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/1357254/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/1357254/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iPhone SDK : GameKit and large files &#43; connection lost