模拟电子表的功能

来源:互联网 发布:大麦盒子怎么连接网络 编辑:程序博客网 时间:2024/05/01 11:48

- (void)viewDidLoad

{

    [superviewDidLoad];

    _timeLabel.textColor = [UIColorredColor];

    _timeLabel.font = [UIFontsystemFontOfSize:13];

    _timeLabel.backgroundColor = [UIColorcolorWithRed:137.0/255.0green:109.0/255.0blue:164.0/255.0alpha:1];

    [self setTime];

    [NSTimer scheduledTimerWithTimeInterval:1target:selfselector:@selector(timerAction:)userInfo:nilrepeats:YES];

}


- (void)timerAction:(NSTimer *)timer {

    [self setTime];

}


- (void)setTime {

    NSDate  *date = [NSDatedate];

    NSDateFormatter *formatter = [[NSDateFormatteralloc]init];

//    [formatter setAMSymbol:@"AM"];

//    [formatter setPMSymbol:@"PM"];

    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    _timeLabel.text = [NSStringstringWithFormat:@"         %@    正在直播.....",[formatterstringFromDate:date]];

}

0 0
原创粉丝点击