我正在使用带有Objective C语言的Xcode。我想知道是否有任何方法来显示计时器或计数器,以显示应用程序运行的时间。无论应用程序运行多长时间,它都会将计数器增加到秒,分钟。任何帮助将不胜感激。
谢谢
答案 0 :(得分:0)
在UILable
或RootViewController
中创建一个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]];
}