在应用中显示计时器?

时间:2014-12-24 04:29:43

标签: ios objective-c iphone xcode development-environment

我正在使用带有Objective C语言的Xcode。我想知道是否有任何方法来显示计时器或计数器,以显示应用程序运行的时间。无论应用程序运行多长时间,它都会将计数器增加到秒,分钟。任何帮助将不胜感激。

谢谢

1 个答案:

答案 0 :(得分:0)

UILableRootViewController中创建一个UIWindow,然后按照以下方式频繁更新。

one Variable文件中创建.h

@property (nonatomic) int seconds;

在您的code

ViewDidLoad方法中放入RootViewController
NSTimer * timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateLabel) userInfo:nil repeats:YES];
    [timer fire];

创建关注Function以更新UILabel

- (void) updateLabel {

    self.seconds = self.seconds + 1;
    NSLog(@"You can show time in minutes, hours and day also after doing some calculation as per your need");
    [self.lblDemo setText:[NSString stringWithFormat:@"%d seconds",self.seconds]];

}