如何更改UIPageControl点[重复]

问题描述 投票:8回答:2

我见过UIPageControls上有不同指标的应用程序(例如meebo),而不是默认的白色圆圈。

是否有捷径可寻?我已经阅读了UIPageControls的文档,似乎没有替换图像的方法。

iphone objective-c interface-builder uipagecontrol
2个回答
21
投票

您可以通过执行以下步骤来实现此目的:

1-创建从UIPageControl继承的自定义类。

2-将此类分配给要更改其点的所需UIPageControl。

3-将以下代码放在自定义UIPageControl类中。

把它放在customClass.m文件中:

-(id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if(self)
    {
        activeImage = [UIImage imageNamed:@"active_dot.png"];
        inactiveImage = [UIImage imageNamed:@"inactive_dot.png"];
    }
    return self;
}

-(void)updateDots
{
    for (int i = 0; i < [self.subviews count]; i++)
    {
        UIImageView* dot = [self.subviews objectAtIndex:i];
        dot.frame = CGRectMake(dot.frame.origin.x, dot.frame.origin.y, 14, 14.5);
        if (i == self.currentPage)
            dot.image = activeImage;
        else
            dot.image = inactiveImage;
    }
}

-(void)setCurrentPage:(NSInteger)page
{
    [super setCurrentPage:page];
    [self updateDots];
}

把它放在customClass.h文件中

{
    UIImage* activeImage;
    UIImage* inactiveImage;
}
@property(nonatomic, retain) UIImage* activeImage;
@property(nonatomic, retain) UIImage* inactiveImage;

5-只需使用以下行在您将页面控件放入其中的类中设置UIPageControl的当前页面:

[self.pageControl setCurrentPage:number];

记得在UIPageControl里面的viewDidLoad()方法中设置当前页面。

当加载视图时,将设置UIPageControl图像。


4
投票

没有用于更改图像的公共API。你可以看看this blog post,它描述了一种定制UIPageControl的方法。

© www.soinside.com 2019 - 2024. All rights reserved.