是否可以在 Today Widget 中刷新计时器?

Is it possible to refresh a timer in a Today Widget?

我想知道是否可以更新今日小部件中计时器的文本标签。 我环顾四周,但没有任何帮助。

是的,你可以。我刚刚测试过并且有效。您只需将计时器添加到主 运行 循环 NSRunLoopCommonModes:

RunLoop.main.add(yourTimerName, forMode: .commonModes)

import NotificationCenter

class TodayViewController: UIViewController, NCWidgetProviding {

    @IBOutlet weak var strTimer: UILabel!

    var timer = Timer()

    func updateInfo() {
        strTimer.text = Date().description
    }
    override func viewDidLoad() {
        super.viewDidLoad()
        timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(updateInfo), userInfo: nil, repeats: true)
        RunLoop.main.add(timer, forMode: .commonModes)
    }
    func widgetPerformUpdate(completionHandler: @escaping (NCUpdateResult) -> Void) {
        completionHandler(.newData)
    }
}

我知道这是一个 Swift 问题,但我发现它在寻找 Objective-C 代码,所以其他人也可能如此。

-(void) viewDidLoad
{
    [NSTimer scheduledTimerWithTimeInterval:1 // update more than once a second to appear in sync with the system clock
                                     target:self
                                   selector:@selector(updateUi:)
                                   userInfo:nil
                                    repeats:YES];

}


-(void) updateUi:(NSTimer *)timer 
{
   // Update Widget UI as required
}