我不太擅長調試並找出錯誤。所以我的應用程序基本上有一個通知,當按下「Call」通知的操作時,會彈出一個警報,並在調度通知時調用最初放在UITextField中的號碼。當動作由於某種原因將應用程序帶入應用程序時,我甚至不會收到警報,並且彈出一個「Thread 1: EXC_BREAKPOINT
」錯誤。任何幫助將是真棒:)謝謝。這裏是我的代碼,其中的問題很可能是來自何處:爲什麼有線程1:EXC_BREAKPOINT當我的警報嘗試彈出?
在我的ViewController子類:
func showAlert(title: String, message : String, buttonTitle1: String, buttonTitle2: String,window: UIWindow){
// create the alert
let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
// add the actions (buttons)
alert.addAction(UIAlertAction(title: buttonTitle1, style: UIAlertActionStyle.default, handler: { action in
if let url = URL(string: "tel://\(self.phoneNumber.text)") {
UIApplication.shared.open(url, options: [:])
}
}))
alert.addAction(UIAlertAction(title: buttonTitle2, style: UIAlertActionStyle.cancel, handler: nil))
// show the alert
self.present(alert, animated: true, completion: nil)
}
//Main Stuff
var window: UIWindow?
而且一個視圖控制器擴展:
extension ViewController: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping() -> Void) {
if response.actionIdentifier == "call" {
self.showAlert(title: "Enter Call", message: "Are you sure?", buttonTitle1: "Go", buttonTitle2: "Cancel", window: self.window!)
}
}
}
請編輯您的問題並刪除與您的問題無關的代碼。請指出導致錯誤的確切線。 – rmaddy
@rmaddy剛剛更新了代碼 – krish
您是否設置了斷點?在邊緣尋找藍旗。 – Paulw11