會自動生成frame,能夠設置其中心點center 來佈局
佈局
@property(nonatomic) NSInteger numberOfPages;
@property(nonatomic) NSInteger currentPage;
atom
設置頁數經過numberOfPages屬性設置,code
currentPage 當前選中頁面
it
currentPageIndicatorTintColor 當前頁的圓點顏色
class
pageIndicatorTintColor 非當前頁面圓點顏色di
UIPageControl 的示例代碼
view
UIPageControl *pageControl = [[UIPageControl alloc] init]; pageControl.numberOfPages = 3; pageControl.centerX = self.view.width * 0.5; pageControl.centerY = self.view.height - 30; [self.view addSubview:pageControl]; // 2.設置圓點的顏色 pageControl.currentPageIndicatorTintColor = [UIColor orangeColor]; // 當前頁的小圓點顏色 pageControl.pageIndicatorTintColor = [UIColor lightGrayColor]; // 非當前頁的小圓點顏色