UITableViewController 选择后不会刷新 ->返回表
我使用带有导航控制器和标准 UITableViewController 的窗口模板。 当选择一行时,会弹出新的 UITableViewController
,当选择该表中的一行时,会弹出一个带有网页的新视图。
现在,当我浏览此内容并返回到第一个 UITableViewController
并选择另一行时,我总是会看到我选择的第一行的值。
所以它不会刷新或获取新数据或更新我不知道的表。 (第二个 UITableViewController 和带有网页的第三个视图始终具有相同的信息)。
另外,我使用 viewDidLoad 来完成所有操作,也尝试了 viewDidAppear 但似乎效果不佳。
提前谢谢
W
I'm using a Window Template with a Navigation Controller and standard a UITableViewController
.
When a row is selected, new UITableViewController
pops up, and when a row in that table is selected, a new view with a webpage pops up.
Now when I navigate through this, and return to the first UITableViewController
, and select another row, I always see the values of the first row I selected.
So it won't refresh or get the new data or update the table I don't know. (2nd UITableViewController
and 3rd view with webpage always has the same information on it).
Also I'm using viewDidLoad
for doing everything, tried viewDidAppear
as well but that didn't seem to work out as well..
Thx in advance
W
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下,
在您的
tableView:didSelectRowAtIndexPath:
中添加以下行(作为第一行),谢谢。
try this,
add following line(as first line) in your
tableView:didSelectRowAtIndexPath:
thanks.