devinross / tapkulibrary

tap + haiku = tapku, a well crafted open source iOS framework
http://devinross.com/tapku/documentation
MIT License
3.9k stars 653 forks source link

DayView : current time update - Enhancement #302

Closed paresh-navadiya closed 9 years ago

paresh-navadiya commented 9 years ago

As there no update of current time in Day View

paresh-navadiya commented 9 years ago

NSDateComponents *compNow = [NSDate componentsOfCurrentDate]; [self performSelector:@selector(updateToCurrentTime) withObject:self afterDelay:60.0f-compNow.second];

Method defination :

-(void)updateToCurrentTime { if (self.dayView) { [self.dayView.nowLineView updateTime]; } [self performSelector:@selector(updateToCurrentTime) withObject:self afterDelay:60.0f]; }