所以我宣布了一个计时器:
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'没有先清除以前缓存的值"
我该如何解决这个问题?