私はジョブを渡そうとしますか?(Int64)Intパラメータとして(私はそれが大きくないことを知っている)、迅速なコンパイラは、このエラーでプロンプト、私はキャストする方法を試したそれが、ない成功を収めなかった:タイプ 'Int64?'の値を変換できません。予想される引数の型 'Int'
Cannot convert value of type 'Int64?' to expected argument type 'Int'
をマイコード:
Job.updateJobStatus(token: tok, jobId: job?.id, status:JobSatus.canceled) { (result, error) in
if result != nil
{
}
else if error != nil
{
}
}
試しましたか? https://stackoverflow.com/a/32793656/8236481 – Oxthor
現時点でオプションの問題を無視して、なぜ2つのidデータ型が異なるのですか? – rmaddy
関連:https://stackoverflow.com/questions/32793460/can-i-cast-int64-directly-into-int –