1
이 코드의 결과는 "유형 'CGPoint'가 프로토콜 'AnyObject'를 준수하지 않는 이유는 무엇입니까?스위프트 : NSMutableSet -> 유형 'CGPoint'가 프로토콜 'AnyObject'를 준수하지 않음
let mutableSet = NSMutableSet()
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
/* Called when a touch begins */
touch = touches.anyObject() as UITouch!
mutableSet.addObject(touch.locationInNode(self))
}