刷新 xcode 中的选项卡?

发布于 2024-11-07 06:51:49 字数 171 浏览 0 评论 0原文

有没有办法在 XCode 中刷新选项卡的内容?我设置一个选项卡如下: [[dappDelegate tabBarController] setSelectedIndex:1];

但是,当我尝试从不同的屏幕执行此操作时,仍然选择相同的选项卡屏幕。有没有办法让选项卡完全重新加载数据?

谢谢,格雷姆。

Is there a way to refresh a tab's content in XCode? I'm setting a tab as follows: [[dappDelegate tabBarController] setSelectedIndex:1];

However, when I try and do it from a different screen, the same tab screen is still selected. Is there a way to have the tab completely reload the data?

Thanks, Graeme.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽清梦 2024-11-14 06:51:49

我使用了一种似乎适合我的情况的黑客:

if(tabBarController.selectedIndex == 1)
{
[tabBarController setSelectedIndex:-1];
[tabBarController setSelectedIndex:1];
}
else
{
[tabBarController setSelectedIndex:1];
}

I use a hack around that seems to work for my case:

if(tabBarController.selectedIndex == 1)
{
[tabBarController setSelectedIndex:-1];
[tabBarController setSelectedIndex:1];
}
else
{
[tabBarController setSelectedIndex:1];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文