"在未先清除先前缓存的值的情况下发送未缓存的消息"我怎样才能解决这个问题?

时间:2017-07-14 09:17:50

标签: ios timer nstimer userinfo

所以我宣布了一个计时器:

self.timer = Timer.scheduledTimer(timeInterval: 0.01, target: self, selector: #selector(self.updateWatch), userInfo: data!, repeats: true)

(数据类型为CMMotionActivity)

然后我在updateWatch()函数中获取userInfo:

let data = timer.userInfo as! CMMotionActivity

但是在尝试时,程序会失败并且#34; [客户端] #Warning发送未缓存的消息' kCLConnectionMessageMotionActivityUpdate'没有先清除以前缓存的值"

我该如何解决这个问题?

0 个答案:

没有答案