iOS控件之UIPageControl

Posted LG_刚刚好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS控件之UIPageControl相关的知识,希望对你有一定的参考价值。

作用:通常与UIScrollView连用,提示用户当前显示的页数


常用属性和方法


// 共有几个分页“圆圈”
@property(nonatomic) NSInteger numberOfPages;
// 显示当前的页
@property(nonatomic) NSInteger currentPage;
// 只存在一页时,是否隐藏,默认为YES
@property(nonatomic) BOOL hidesForSinglePage;
// 刷新视图

- (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;//如果是单页就隐藏掉


运行

         在真正项目开发时候都是 自定义该控件 因为本身显示的小点太小不方便操作


以上是关于iOS控件之UIPageControl的主要内容,如果未能解决你的问题,请参考以下文章

iOS控件详解之UIScrollView

IOS控件布局之Masonry布局框架

IOS控件布局之Masonry布局框架

iOS之九宫格设计和数据模型转换

iOS基础控件之UILabelUITextFieldUIButton(文本输入框按钮)

ios开发之--系统控件显示中文