当我尝试使用Xcode 7,Swift 2:
运行此语句时lastpoint = touches.AnyObject().locationInView(self)
它出错了
“'Set'类型的值没有成员'AnyObject'”
为什么?
答案 0 :(得分:1)
如果AnyObject
,则没有Set
方法。 NSSet
有anyObject
,但touchesBegan
方法现在使用Swift Set
而不是基础NSSet
。
现在你可能会这样做:
if let location = touches.first?.locationInView(self) { ... }