我从上周开始就一直在寻找上层的解决方案, 但我在互联网上找不到解决方案。所以我想我会在这里寻求帮助。
Now to may question: I have a MainStoryboard and in it a ViewController with a View. On that view I ve put a tableView. ViewController.h
IBOutlet UITableView *tableView
//on bottom
@property (nonatomic, retain) UITableView *tableView;
ViewController.m I ve synthesized it and now I would like to reload and display it while the view is shown.
The following things I tested with no result: [tableView reloadData]; [self.tableView reloadData]; [self.tableView setNeedsDisplay];
And if I used [self.view setNeedsDisplay];
I ve got the following Error:
由于未发现例外的 NNS Internatlunitycon一致性Expeption 终止应用程序, 原因 : 无法以捆绑方式装入 NIB : NSBundle <... & gt; (已装入), 名称为 View 管理员 < em @ / em > 第一调用堆栈 : (.) 终止所谓的扔一个例外 (lldb)
没错 没有NIB文件 因为我用过《故事版》
我发现的唯一一件事是, 如果我用一个按钮重新装入在剧目板内视图上的视图, 表格View 就会被重新装入-- 完整地重新装入-- 但这不是解决办法。
我可以在 -( 省略) prepareForSegue: (UIStoryboard *) sesgue 发件人: (id) sender
中做点什么吗? 这个方法我至今只用于一个 popover 。