当我反向导航 UITableViewController 时应用程序崩溃,为什么?
实际上我的问题是......假设我有一个 UITableView
控制器,当我选择一个单元格时,它会转到另一个控制器,它也是一个 UITableView
控制器。但是当我返回时从第二个控制器到第一个 UITableView
控制器,然后应用程序崩溃。有人可以回答我的问题吗?我准备发送我的代码。如果有人想查看代码,请告诉我哪一部分我会给。
第一个控制器
- 在一个部分中包含
三行,每行代表一个来自 xml 的值。作为示例...... --“总订单 (2)”....第一个单元格 --“待定订单 (3)”....第二个单元格 --"TODAYS ORDER (4)"....第三个单元格
当我选择任何一个单元格时,它会转到一个新的
UITableView
控制器,该控制器显示可能是“总订单”的订单,“待处理订单”,“今日订单”来自另一个 xml 链接。
现在我的问题是,当我回到我的第一个控制器时,几秒钟后应用程序崩溃了。我没有遇到任何问题......所以请帮助我。
注意:当应用程序崩溃时,它不会在错误控制台中给出任何崩溃报告或任何错误。
Actually My problem is....suppose i have an UITableView
controller when i select a cell then it goes another controller which is also an UITableView
controller.but when i return back from second controller to first UITableView
controller then app crashes.Is there anyone who can answer my question??i am ready to send my code.if any one want to see the code then please tell me which portion i will give.
First Controller Contains
Three rows in one section and every rows is representing a value which is coming from a xml.as an example...
--"TOTAL ORDER (2)"....first cell
--"PENDING ORDER (3)"....second cell
--"TODAYS ORDER (4)"....Third cellwhen i select any one cell then it goes to a new
UITableView
controller which shows the orders it may be "TOTAL ORDER","PENDING ORDER","TODAYS ORDER" from another xml link.
Now my problem is when i go to back to my first controller then after few seconds app crashes.i am not getting any problem..so please help me.
NOTE THAT: When app crashes then it does not give any crash report or any error in error console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请使用调试器查看它在哪一点崩溃。因为我不知道您的应用程序的详细信息...
您可能想尝试...
[yourTableView reloadData];
此致
Please use debugger to see on which point it crash.As I don't know the details of your Application...
you might wanna try....
[yourTableView reloadData];
best regards
我已经解决了我的问题,这是因为我在数组为空时调用 uitableview 行方法,该方法返回 uitableview 中的数字行。
I have fixed my problem it was because of i was calling uitableview row method while array is empty which is returning the number row in uitableview.