Hi Everybody I made a Time Counter as for many people have different requirement of counters to be used in their projects.
My time counter is very smooth scrolling with the help of little bit implementation of NSTimer and UITableView.
You can also try making a sample project using my Reusable Files and can make it more useful with some modification.Customize it according to your requirement and use it for your project need.
DO NOT FORGOT TO IMPORT QuartzCore Framework
Here you can get Sample Code
My time counter is very smooth scrolling with the help of little bit implementation of NSTimer and UITableView.
You can also try making a sample project using my Reusable Files and can make it more useful with some modification.Customize it according to your requirement and use it for your project need.
DO NOT FORGOT TO IMPORT QuartzCore Framework
TimeCounter.h File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TimeCounter.h | |
// SmoothCriminal | |
// | |
// Created by Prince Kumar Sharma on 05/07/13. | |
// Copyright (c) 2013 Prince Kumar Sharma. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@class UIViewController; | |
@interface TimeCounter : UIView<UITableViewDataSource,UITableViewDelegate> | |
{ | |
CGFloat rowHeight; | |
int secLsb,secMsb,minLsb,minMsb; | |
NSTimer *outertimer,*internaltimer,*restTimer1,*restTimer2,*restTimer3; | |
NSArray *digitArray,*digitArr2; | |
UITableView *dial1,*dial2,*dial3,*dial4; | |
float timeInterval; | |
} | |
-(void)stopCounter; | |
-(void)startCounter; | |
-(void)reset; | |
-(NSString*)getTime; | |
@end |
TimeCounter.m File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TimeCounter.m | |
// SmoothCriminal | |
// | |
// Created by Prince Kumar Sharma on 05/07/13. | |
// Copyright (c) 2013 Prince Kumar Sharma. All rights reserved. | |
// | |
#import "TimeCounter.h" | |
#import <QuartzCore/QuartzCore.h> | |
@implementation TimeCounter | |
-(id)init | |
{ | |
self=[super initWithFrame:CGRectMake(0, 0, 100, 30)]; | |
if (self) { | |
} | |
return self; | |
} | |
- (id)initWithFrame:(CGRect)frame | |
{ | |
self = [super initWithFrame:frame]; | |
if (self) { | |
rowHeight=frame.size.height; | |
CGFloat rowWidth=frame.size.width/4; | |
digitArray=[[NSArray alloc] initWithObjects:@"0",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"0",nil]; | |
digitArr2=[[NSArray alloc] initWithObjects:@"0",@"1",@"2",@"3",@"4",@"5",@"0",nil]; | |
self.frame=frame; | |
[self.layer setCornerRadius:5.0]; | |
[self setClipsToBounds:YES]; | |
[self.layer setBorderColor:[UIColor whiteColor].CGColor]; | |
[self.layer setBorderWidth:2.0]; | |
secLsb=0; | |
secMsb=0; | |
minLsb=0; | |
minMsb=0; | |
timeInterval=1/rowHeight; | |
dial1=[[UITableView alloc] init]; | |
dial2=[[UITableView alloc] init]; | |
dial3=[[UITableView alloc] init]; | |
dial4=[[UITableView alloc] init]; | |
[dial1 setDataSource:self]; | |
[dial2 setDataSource:self]; | |
[dial3 setDataSource:self]; | |
[dial4 setDataSource:self]; | |
[dial1 setUserInteractionEnabled:NO]; | |
[dial2 setUserInteractionEnabled:NO]; | |
[dial3 setUserInteractionEnabled:NO]; | |
[dial4 setUserInteractionEnabled:NO]; | |
dial1.delegate=self; | |
dial2.delegate=self; | |
dial3.delegate=self; | |
dial4.delegate=self; | |
dial2.tag=1; | |
dial3.tag=2; | |
dial4.tag=3; | |
dial1.frame=CGRectMake(0, 0, rowWidth, rowHeight); | |
dial2.frame=CGRectMake(rowWidth, 0, rowWidth, rowHeight); | |
dial3.frame=CGRectMake(rowWidth*2, 0, rowWidth, rowHeight); | |
dial4.frame=CGRectMake(rowWidth*3, 0, rowWidth, rowHeight); | |
[dial1 setBackgroundColor:[UIColor clearColor]]; | |
dial1.autoresizingMask = (UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth); | |
[dial1 setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine]; | |
[dial1 setClipsToBounds:YES]; | |
[dial1 setRowHeight:rowHeight]; | |
[self addSubview:dial1]; | |
[self addSubview:dial2]; | |
[self addSubview:dial3]; | |
[self addSubview:dial4]; | |
UILabel *glowLabel=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, rowWidth , rowHeight)]; | |
glowLabel.text=@":"; | |
glowLabel.textColor=[UIColor blackColor]; | |
glowLabel.textAlignment=NSTextAlignmentCenter; | |
glowLabel.center=CGPointMake(frame.size.width/2, frame.size.height/2); | |
glowLabel.backgroundColor=[UIColor clearColor]; | |
glowLabel.font=[UIFont boldSystemFontOfSize:20.0f]; | |
[self addSubview:glowLabel]; | |
[dial1 reloadData]; | |
[dial2 reloadData]; | |
[dial3 reloadData]; | |
[dial4 reloadData]; | |
[self setNeedsDisplay]; | |
// Initialization code | |
} | |
return self; | |
} | |
-(void)invalidateAll | |
{ | |
[outertimer invalidate]; | |
[internaltimer invalidate]; | |
[restTimer1 invalidate]; | |
[restTimer2 invalidate]; | |
[restTimer3 invalidate]; | |
} | |
-(void)startCounter | |
{ | |
[self invalidateAll]; | |
outertimer=[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(snapCell) userInfo:nil repeats:YES]; | |
} | |
-(void)reset | |
{ | |
secLsb=0; | |
secMsb=0; | |
minLsb=0; | |
minMsb=0; | |
} | |
-(NSString*)getTime | |
{ | |
return [NSString stringWithFormat:@"%i%i:%i%i",minMsb,minLsb,secMsb,secLsb]; | |
} | |
-(void)stopCounter | |
{ | |
[internaltimer invalidate]; | |
[outertimer invalidate]; | |
} | |
-(void)snapCell | |
{ | |
if (secLsb==9) { | |
[self MoveCellForTable:dial3]; | |
} | |
if (secLsb==10) { | |
[dial4 setContentOffset:CGPointMake(0, 0)]; | |
secLsb=0; | |
} | |
[internaltimer invalidate]; | |
internaltimer=[NSTimer scheduledTimerWithTimeInterval:timeInterval | |
target:self | |
selector:@selector(automaticScroll) | |
userInfo:nil | |
repeats:YES]; | |
secLsb++; | |
} | |
-(void)MoveCellForTable:(UITableView*)tble | |
{ | |
if (tble.tag==2) { | |
secMsb++; | |
if (secMsb==6) { | |
[tble setContentOffset:CGPointMake(0, 0)]; | |
[self MoveCellForTable:dial2]; | |
secMsb=0; | |
}else{ | |
restTimer1=[NSTimer scheduledTimerWithTimeInterval:timeInterval | |
target:self | |
selector:@selector(atomScrol:) | |
userInfo:@"3" | |
repeats:YES]; | |
[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(stopRest:) userInfo:@"1" repeats:NO]; | |
} | |
} | |
if (tble.tag==1) { | |
minLsb++; | |
if (minLsb==10) { | |
[tble setContentOffset:CGPointMake(0, 0)]; | |
[self MoveCellForTable:dial1]; | |
minLsb=0; | |
}else{ | |
restTimer2=[NSTimer scheduledTimerWithTimeInterval:timeInterval | |
target:self | |
selector:@selector(atomScrol:) | |
userInfo:@"2" | |
repeats:YES]; | |
[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(stopRest:) userInfo:@"2" repeats:NO]; | |
} | |
} | |
if (tble.tag==0) | |
{ | |
minMsb++; | |
if (minMsb==5 && minLsb==10) { | |
[tble setContentOffset:CGPointMake(0, 0) animated:NO]; | |
[dial2 setContentOffset:CGPointMake(0, 0) animated:NO]; | |
[dial3 setContentOffset:CGPointMake(0, 0) animated:NO]; | |
[dial4 setContentOffset:CGPointMake(0, 0) animated:NO]; | |
minLsb=0; | |
minMsb=0; | |
secLsb=0; | |
secMsb=0; | |
}else{ | |
restTimer3=[NSTimer scheduledTimerWithTimeInterval:timeInterval | |
target:self | |
selector:@selector(atomScrol:) | |
userInfo:@"1" | |
repeats:YES]; | |
[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(stopRest:) userInfo:@"3" repeats:NO]; | |
} | |
} | |
} | |
-(void)stopRest:(NSTimer*)timer | |
{ | |
int tagIndex=[(NSString*)[timer userInfo]intValue]; | |
switch (tagIndex) { | |
case 1:{ | |
[restTimer1 invalidate]; | |
} | |
break; | |
case 2:{ | |
[restTimer2 invalidate]; | |
} | |
break; | |
case 3:{ | |
[restTimer3 invalidate]; | |
} | |
break; | |
default:{ | |
[restTimer1 invalidate]; | |
[restTimer2 invalidate]; | |
[restTimer3 invalidate]; | |
} | |
} | |
} | |
-(void)automaticScroll | |
{ | |
[dial4 setContentOffset:CGPointMake(dial4.contentOffset.x,dial4.contentOffset.y+1) animated:NO]; | |
} | |
-(void)atomScrol:(NSTimer*)timer | |
{ | |
int tagIndex=[(NSString*)[timer userInfo]intValue]; | |
switch (tagIndex) { | |
case 1:{ | |
[dial1 setContentOffset:CGPointMake(dial1.contentOffset.x,dial1.contentOffset.y+1) animated:NO]; | |
} | |
break; | |
case 2:{ | |
[dial2 setContentOffset:CGPointMake(dial2.contentOffset.x,dial2.contentOffset.y+1) animated:NO]; | |
} | |
break; | |
case 3:{ | |
[dial3 setContentOffset:CGPointMake(dial3.contentOffset.x,dial3.contentOffset.y+1) animated:NO]; | |
} | |
break; | |
default: | |
break; | |
} | |
} | |
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section | |
{ | |
if (tableView.tag==2) { | |
return [digitArr2 count]; | |
} | |
return [digitArray count]; | |
} | |
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
return rowHeight; | |
} | |
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
NSString *cellIdentifier=@"cellIdentifier"; | |
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier]; | |
if (cell==nil) { | |
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier]; | |
} | |
cell.textLabel.textAlignment=NSTextAlignmentCenter; | |
cell.textLabel.font=[UIFont boldSystemFontOfSize:14.0f]; | |
if (tableView.tag==2) { | |
cell.textLabel.text=[digitArr2 objectAtIndex:indexPath.row]; | |
}else{ | |
cell.textLabel.text=[digitArray objectAtIndex:indexPath.row]; | |
} | |
cell.textLabel.backgroundColor=[UIColor clearColor]; | |
return cell; | |
} | |
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
UIView *bgView=[[UIView alloc] initWithFrame:cell.frame]; | |
[bgView setBackgroundColor:[UIColor whiteColor]]; | |
CAGradientLayer *gradient = [CAGradientLayer layer]; | |
gradient.frame = bgView.bounds; | |
gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor lightGrayColor] CGColor], (id)[[UIColor whiteColor] CGColor], nil]; | |
[bgView.layer insertSublayer:gradient atIndex:0]; | |
[cell setBackgroundView:bgView]; | |
cell.textLabel.layer.shadowColor = [cell.textLabel.textColor CGColor]; | |
cell.textLabel.layer.shadowOffset = CGSizeMake(0.0, 0.0); | |
cell.textLabel.layer.shadowRadius = 3.0; | |
cell.textLabel.layer.shadowOpacity = 0.5; | |
cell.textLabel.layer.masksToBounds = NO; | |
} | |
@end |
Using TimeCounter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad | |
{ | |
timeCounter=[[TimeCounter alloc] initWithFrame:CGRectMake(50, 100, 120, 30)]; | |
[self.view addSubview:timeCounter]; | |
TimeCounter *timeCounter2=[[TimeCounter alloc] initWithFrame:CGRectMake(50, 200, 200, 50)]; | |
[self.view addSubview:timeCounter2]; | |
[timeCounter2 startCounter]; | |
[super viewDidLoad]; | |
// Do any additional setup after loading the view, typically from a nib. | |
} | |
- (IBAction)getIME:(id)sender { | |
NSLog(@"current time is %@",[timeCounter getTime]); | |
} | |
- (IBAction)start:(id)sender { | |
[timeCounter startCounter]; | |
} | |
- (IBAction)stop:(id)sender { | |
[timeCounter stopCounter]; | |
} |
Here you can get Sample Code