2012-08-02 43 views
0

我想创建一个带有定时器的UIButton,如附图所示。我该如何解决它? 将MBProgressHUD添加到UIButton帮助?带定时器的UIButton

waze http://www.efytimes.com/admin/useradmin/rte/my_documents/my_pictures/CA6_Waze3.PNG

+0

是否要求定时器指示符是图片中显示的旋转圆圈? 如果你想使它成为一条线,你可以使用UIProgressView和NSTimer每秒更新一次进度。 – 2012-08-02 18:22:21

+0

你尝试过什么吗? – NSPunk 2012-08-02 18:45:13

回答

1

我可以告诉你如何绘制表示定时器的圈子,我敢肯定,你可以把它从那里。下面的代码:

TimerButton.h

#import <UIKit/UIKit.h> 

@interface TimerButton : UIView 
{ 
    float currentAngle; 
    float currentTime; 
    float timerLimit; 
    NSTimer *timer; 
} 

@property float currentAngle; 

-(void)stopTimer; 
-(void)startTimerWithTimeLimit:(int)tl; 

@end 

TimerButton.m

#import "TimerButton.h" 

@implementation TimerButton 

#define DEGREES_TO_RADIANS(degrees) ((3.14159265359 * degrees)/ 180) 
#define TIMER_STEP .01 

@synthesize currentAngle; 

- (id)initWithFrame:(CGRect)frame 
{ 
    self = [super initWithFrame:frame]; 
    if (self) 
    { 
     self.backgroundColor = [UIColor clearColor]; 

     currentAngle = 0; 

    } 
    return self; 
} 

- (void)drawRect:(CGRect)rect 
{ 
    UIBezierPath* aPath = [UIBezierPath bezierPathWithArcCenter:CGPointMake(50, 50) 
                 radius:45 
                startAngle:DEGREES_TO_RADIANS(0) 
                 endAngle:DEGREES_TO_RADIANS(currentAngle) 
                 clockwise:YES]; 
    [[UIColor redColor] setStroke]; 
    aPath.lineWidth = 5; 
    [aPath stroke]; 
} 

-(void)startTimerWithTimeLimit:(int)tl 
{ 
    timerLimit = tl; 
    timer = [NSTimer scheduledTimerWithTimeInterval:TIMER_STEP target:self selector:@selector(updateTimerButton:) userInfo:nil repeats:YES]; 
} 

-(void)stopTimer 
{ 
    [timer invalidate]; 
} 

-(void)updateTimerButton:(NSTimer *)timer 
{ 
    currentTime += TIMER_STEP; 
    currentAngle = (currentTime/timerLimit) * 360; 

    if(currentAngle >= 360) [self stopTimer]; 
    [self setNeedsDisplay]; 
} 

@end 

给一个尝试,让我知道,如果你需要进一步的解释。

+0

这工作..谢谢!! – ddd 2012-08-03 00:02:42