我正在使用WatchKit
开发应用我想创建一个 WKInterfaceTimer ,当我点击一个按钮时,计时器以 0秒
开始但是当我运行应用程序时,计时器自动启动并且我无法在之前或之后停止计时器
这是代码:
[self.mytimer setHidden:NO];
[self.mytimer start];
在故事板中,我设置了短暂的第二个小时"全部勾选并启用未启用
我是否需要使用[self.mytimer setDate:];
如果是,请给我一个确切的短字符串,显示标签0 secends
答案 0 :(得分:7)
我不确定你的要求,但我在我的故事板中放了一个带有按钮的计时器。然后我确保使用缩写格式启用计时器(确保选择了秒,分钟和小时)。确保计时器已启用,否则它将不会出现在您的视图中,目前我找不到以编程方式启用计时器的方法。还要确保在按下开始按钮时设置日期,否则计时器将在后台不知情的情况下开始计时。在WKInterfaceTimer的类中,start方法仅更新标签,实际上并不启动任何类型的计时器。下面的代码使计时器从0开始计数。
#import "InterfaceController.h"
@interface InterfaceController()
@property (weak, nonatomic) IBOutlet WKInterfaceTimer *testTimer;
@end
@implementation InterfaceController
- (instancetype) initWithContext: (id) context
{
self = [super initWithContext:context];
if (self)
{
NSLog(@"Custom init called for InterfaceController!");
}
return self;
}
- (void) willActivate
{
[self.testTimer stop];
NSLog(@"Activated!");
}
- (IBAction) onStartButtonPressed
{
[self.testTimer setDate:[NSDate dateWithTimeIntervalSinceNow:-1]];
[self.testTimer start];
NSLog(@"Start button pressed!");
}
@end
在willActivate下停止计时器的原因是,一旦显示视图,它就不会开始向上计数。