码迷,mamicode.com
首页 > 其他好文 > 详细

UILabel电子表显示

时间:2014-12-02 14:58:55      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   for   on   

效果图:

bubuko.com,布布扣

代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //label
    label=[[UILabel alloc]initWithFrame:CGRectMake(50, 100, 200, 200)];
    label.backgroundColor=[UIColor redColor];
    [self.view addSubview:label];
    
    //定时器
    [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(updateTime) userInfo:nil repeats:YES];
    
    dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"HH:mm:ss"];
    
}
- (void)updateTime
{
    label.text = [dateFormatter stringFromDate:[NSDate date]];
}

 

UILabel电子表显示

标签:style   blog   http   io   ar   color   sp   for   on   

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4137211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!