您要查找的内容称为UIPageControl
. 类参考可以在这里找到,一个非常好的教程可以在这里找到。
如果您想要UIPageControl
更多可定制的选项,我建议您尝试其中的任何一个。(这SMPageControl
是我个人的最爱之一)
编辑由于评论:
这是上面教程中的项目链接。
在CustomPagerViewController
他打电话
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View1"]];
这给出了等效的结果
UIViewController *aViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"View1"];
[self addChildViewController:aViewController];
现在,如果你想添加几个 ViewControllers 你可以做一个循环如下
for(int i = 0; i<yourNumberOfViewControllers; i++) {
YourViewControllerClass *aViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"YourIdentifier"];
[aViewController setSomeProperty:someValue];
[self addChildViewController:aViewController];
}
希望能帮助到你!