在iOS 11的Apple时钟应用程序中设置iPhone的计时器

时间:2017-12-30 16:10:00

标签: ios ios11

是否有API将Apple的Clock应用中的计时器设置为特定的倒计时?

我知道有Reminders SDK和EventKit,但我一直在寻找设置计时器而不是提醒。

Timer in the Clock app

1 个答案:

答案 0 :(得分:1)

不,没有可用的API。您应该在应用内创建一个自定义计时器来复制该功能。

使用Timer基础在您的应用中制作一个简单的计时器。

let timer: Timer!

timer = Timer.scheduledTimer(withTimeInterval: 60, repeats: false) { timer in
    [completion code]
}

有关使用倒计时创建计时器的详细信息,请查看this question