美文网首页
UIPageControl

UIPageControl

作者: DeerRun | 来源:发表于2018-12-13 14:57 被阅读6次
    _pageControl.pageIndicatorTintColor = [UIColor redColor];// 设置非选中页的圆点颜色
    _pageControl.currentPageIndicatorTintColor = [UIColor blueColor]; // 设置选中页的圆点颜色
    

    //自定义
    修改静态图标样式,可以采用KVO方式,这种弊端是只能静态显示,无法动态替换,且私有,危险:

    [_pageControl setValue:[UIImage imageNamed:@"image1"] forKeyPath:@"_pageImage"];
     
    [_pageControl setValue:[UIImage imageNamed:@"image2"] forKeyPath:@"_currentPageImage"];
    
    
    

    相关文章

      网友评论

          本文标题:UIPageControl

          本文链接:https://www.haomeiwen.com/subject/mynvhqtx.html