26

POST リクエストを自動的に作成し、それらを送信し、応答を取得し、それらを処理して UIAlertView を表示し、どの問題であるかをユーザーに通知する関数を作成しようとしているときに問題が発生しました。

これが私のコードです:

let task = session.dataTaskWithRequest(request, completionHandler:{ (data, response, error) -> Void in

    dispatch_async(dispatch_get_main_queue(),{
        var alert = UIAlertController(title: "Chargement", message: "Envoi des informations...", preferredStyle: UIAlertControllerStyle.Alert)
        viewController.presentViewController(alert, animated: true, completion: nil)


        answer = NSString(data: data!, encoding: NSUTF8StringEncoding)!
        print(answer)
    var complete = false
    alert.dismissViewControllerAnimated(true, completion: { () -> Void in
        complete = true
    })

    while(!complete)
    {

    }
    var textmsg: String
    if(answer == "#400")
    {
        textmsg = "Il manque une information !"
    }
    else if(answer == "#50")
    {
        textmsg = "Le compte fourni ne correspond pas."
    }
    else if(answer == "#100")
    {
        textmsg = "Impossible d'identifier l'application."
    }
    else if(answer == "#1")
    {
        textmsg = "Transfert terminé avec succès !"
    }
    else {
        textmsg = "Echec du transfert."
    }
    let alertComplete = UIAlertController(title: "Chargement", message: textmsg, preferredStyle: UIAlertControllerStyle.Alert)
    alertComplete.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
    viewController.presentViewController(alertComplete, animated: true, completion: nil)
    })
})

task.resume();

エラー コードは次のとおりです。

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIKeyboardTaskQueue waitUntilAllTasksAreFinished] may only be called from the main thread.'

私の要求が悪い応答 (#400、#50、#100) を返した場合、コードは機能して UIAlertView を表示しますが、応答が良好な場合は上記のエラー コードが表示されます。

4

2 に答える 2

35

UI を扱っているため、メイン スレッドで UIAlertController を呼び出す必要があります。

スウィフト 2.X

dispatch_async(dispatch_get_main_queue(),{ 
               var alert = UIAlertController(title: "Chargement", message: "Envoi des informations...", preferredStyle: UIAlertControllerStyle.Alert)
                viewController.presentViewController(alert, animated: true, completion: nil)

                answer = NSString(data: data!, encoding: NSUTF8StringEncoding)!
                print(answer)
             var complete = false
    alert.dismissViewControllerAnimated(true, completion: { () -> Void in
        complete = true
    })
    while(!complete)
    {

    }
}

スウィフト 4.2

DispatchQueue.main.async {
    var alert = UIAlertController(title: "Chargement", message: "Envoi des informations...", preferredStyle: UIAlertControllerStyle.Alert)
    viewController.presentViewController(alert, animated: true, completion: nil)

    let answer = String(data: data!, encoding: .utf8)!
    print(answer)
    var complete = false
    alert.dismissViewControllerAnimated(true, completion: { () -> Void in
        complete = true
    })
    while(!complete)
    {

    }
}
于 2016-09-18T17:29:00.430 に答える