gpt4 book ai didi

ios - UIPageViewController 在 childViewController 中具有动态内容

转载 作者:行者123 更新时间:2023-11-29 02:57:36 32 4
gpt4 key购买 nike

我有一个 UIPageViewController,它有三个 childViewController。这些 childViewControllers 正在显示图表,每 5 秒使用从网络连接获取的动态数据自动更新。

如何自动刷新 UIPageViewController 内的 childViewControllers 的内容?

最佳答案

您可以在 viewDidLoad 中使用计时器,例如:

- (void)viewDidLoad {
[super viewDidLoad];
[NSTimer scheduledTimerWithTimeInterval:5.0f target:self selector:@selector(refreshControllers) userInfo:nil repeats:YES];
//..
}

- (void)refreshControllers {
//perform refreshing
//when you got your _view1, _view2 etc..
NSArray *viewControllers = @[_view1, _view2, _view3];
[self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];
}

关于ios - UIPageViewController 在 childViewController 中具有动态内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23717014/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com