你的位置:首页 > 软件开发 > 操作系统 > 【代码笔记】UILable电子表显示

【代码笔记】UILable电子表显示

发布时间:2016-08-02 10:00:14
一,效果图。二,代码。RootViewController.h#import <UIKit/UIKit.h>@interface RootViewController : UIViewController{ UILabel *label; NSDateFormat ...

【代码笔记】UILable电子表显示

一,效果图。

【代码笔记】UILable电子表显示

二,代码。

RootViewController.h

【代码笔记】UILable电子表显示
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{  self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  if (self) {    // Custom initialization  }  return self;}- (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]];}
【代码笔记】UILable电子表显示

 

 


 

原标题:【代码笔记】UILable电子表显示

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录