0

我有一个名为 didReceiveApplicationContext 的函数,我需要在那里传输几个字典。现在,我正在使用这段代码:

guard let transferData = applicationContext["dataFromAnotherDevice"] as? Int else { return }

当我尝试执行相同的操作(重复此代码)时,我什么也没有收到。

4

1 回答 1

0

applicationContext API 只发送最近传入的字典。听起来您想使用 transferUserInfo 而不是将每个字典排队。

于 2016-01-24T19:00:50.517 回答