iOS系统通知,与自定义显示时间

链接为上一个作者,感谢最源头的兄弟的总结,也感谢转载它的兄弟,让我可以看得到,并且我也转载一下,让更多人看到。

http://www.jianshu.com/p/5bae90250980,源作者好像是github上面总结的。


更新:后来采用NSTimer 的方式代码如下:(但是上面的链接里面有很多系统通知,以后可能会用到,保留一下)

_timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(timeChange:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop]addTimer:_timer forMode:NSDefaultRunLoopMode];
[_timer fire];
         
- (void)timeChange:(id )sender{
    
    NSDate *currentDate = [NSDate date];//获取当前时间,日期
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"hh:mm:ss"];
    NSString *dateString = [dateFormatter stringFromDate:currentDate];
    if ([dateString hasPrefix:@"0"]) {
        dateString = [dateString substringFromIndex:1];
    }
    
    _timeLabel.text = dateString;
}


你可能感兴趣的:(系统通知,iOS自定义时间显示)