我有一个名为didReceiveApplicationContext的函数,我需要在那里传输几个字典。现在,我正在使用此代码:
guard let transferData = applicationContext["dataFromAnotherDevice"] as? Int else { return }
当我尝试执行相同操作(重复此代码)时,我没有收到任何内容。
答案 0 :(得分:0)
applicationContext API仅发送最近传递的字典。听起来你想使用transferUserInfo而不是将每个字典排队。