- (void)updateCurrentPageDisplay;
project: UIPageControlDemo
打开 AppDelegate.m
在 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
中的 [self.window makeKeyAndVisible]; 顶上加入
UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 100, 320, 40)];
pageControl.backgroundColor = [UIColor grayColor];
[self.window addSubview:pageControl];
运行
在 UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 100, 320, 40)]; 下面加入
pageControl.numberOfPages = 10;
pageControl.currentPage = 2;
运行
可以点击 左右移动
在 pageControl.currentPage = 2; 下面加入
pageControl.enabled = NO;
运行
将 pageControl.enabled = NO; 注释掉加入
[pageControl addTarget:self action:@selector(change:) forControlEvents:UIControlEventValueChanged];
在加入方法
- (void)change:(UIPageControl *)pageControl
{
NSLog(@"index : %d", pageControl.currentPage);
}
运行
将
pageControl.numberOfPages = 10;
pageControl.currentPage = 2;
改成
pageControl.numberOfPages = 1;
pageControl.hidesForSinglePage = YES;//如果是单页就隐藏掉
运行
在真正项目开发时候都是 自定义该控件 由于本身显示的小点太小不方便操作