Getting an error saying NSSet
does not have a member named first for this if
statement
if let touch = touches.first as? UITouch {
}
Getting an error saying NSSet
does not have a member named first for this if
statement
if let touch = touches.first as? UITouch {
}
Your code is wrong, it should be:
if let touches = touches.first as UITouch! {
}