wait_fences:未能收到回复:10004003
我正在尝试将 splitview 添加到我的项目代码中。 据我所知,大多数 SplitView 项目都将其 splitview 加载到主窗口上。
但在进行分割视图之前我需要有其他视图。这就是我将分割视图添加到我的视图控制器之一的原因。
我已经成功添加了我的分割视图..但目前每当我更改 ipad 的方向时, wait_fences: failed to receive reply: 10004003 都会抛出在调试窗口上,并且在调试期间会有延迟时间方向改变。
我试图四处寻找解决方案,但失败了。
有人知道吗?
非常非常感谢!
p/s:我想上传我的项目代码..但我不知道该怎么做..任何提示都会很棒!
i am trying to add splitview into my project code.
I understand that most of the SplitView project have their splitview loaded on the main window.
but i need to have other views before i come to the split view. That's the reason that i added split view to one of my view controller.
i have successfully added my split view.. but currently whenever i change the orientation of my ipad, wait_fences: failed to receive reply: 10004003 will be thrown on the debugging window and will have a lag time during the orientation change.
i have tried to look around for a solution but i failed.
anybody have any idea?
many many thanks!
p/s:i would like to upload my project code.. but i am not sure how to do it.. any tips will be great!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Google 中快速搜索并单击第一个链接显示了这一点: http://www.iphonedevsdk.com/forum/iphone-sdk-development-advanced-discussion/17373-wait_fences-failed-receive-reply-10004003-a.html
您可以将代码上传到文件共享网站,然后发布链接或将代码复制到您的问题中,并使用您输入问题的文本视图顶部的“101010”按钮相应地设置格式。
A quick search in Google and clicking the very first link revealed this: http://www.iphonedevsdk.com/forum/iphone-sdk-development-advanced-discussion/17373-wait_fences-failed-receive-reply-10004003-a.html
You can upload your code to a filesharing website and post the link or copy the code into your question and format is accordingly using the "101010" button on top of the text view where you enter the question into.
我有类似的问题。基本上,我认为某些 UI 元素(在我的例子中是警报框)延迟了拆分视图中其他一些 UI 元素的显示。我将警报框放在 didFinishLaunchingWithOptions 方法中(当标志变为 true 时执行),因此我不再收到错误(因为此时所有元素都已显示)
希望该建议对您有用。祝你好运。
爱德华
I had a similar issue. Basically I believe that some UI elements (in my case, an alert box) was delaying some of the other UI elements in the split view to show up. I put my alert box in the didFinishLaunchingWithOptions method (it executes when a flag becomes true) so I no longer get the error (as all the elements are displayed by that point)
Hope the advice is useful for you. good luck.
Edward