“touchesBegan()

时间:2016-03-05 14:17:37

标签: ios swift

当我尝试使用Xcode 7,Swift 2:

运行此语句时
lastpoint = touches.AnyObject().locationInView(self)

它出错了

  

“'Set'类型的值没有成员'AnyObject'”

为什么?

1 个答案:

答案 0 :(得分:1)

如果AnyObject,则没有Set方法。 NSSetanyObject,但touchesBegan方法现在使用Swift Set而不是基础NSSet

现在你可能会这样做:

if let location = touches.first?.locationInView(self) { ... }