我有一个项目,其中这段代码没有给我带来问题,但在 Xcode 7.0 beta 6 中它跳过了警告,我找不到修复它的方法
func session(session: WCSession, didReceiveMessage message: [String : AnyObject], replyHandler: ([String : AnyObject]) -> Void) {
print("Mensaje recibido:\(message)")
if let msg = message as? String{ //Error here
// do something with the uname
}
replyHandler(["reply" : "OK"])
}