我想检测用户在拨打某个号码后何时返回应用程序:
let scheme = "tel://+1234567890"
if let url = URL(string: scheme) {
UIApplication.shared.open(url, options: [:],
completionHandler: {
(success) in
})
}
根据this回答中的建议,我试图通过使用以下方式检测应用进入前台的时间:
func applicationWillEnterForeground(application: UIApplication!) {}
但问题是上面的函数永远不会被调用。
这是我的info.plist
文件: