美文网首页
Swift -- 获取点击的坐标位置

Swift -- 获取点击的坐标位置

作者: 会飞的大西瓜v | 来源:发表于2018-05-17 15:19 被阅读13次
    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
            //获取点击的坐标位置
            for touch:AnyObject in touches {
                let t:UITouch = touch as! UITouch
                print(t.location(in: self.contentView))
            }
        }

    相关文章

      网友评论

          本文标题:Swift -- 获取点击的坐标位置

          本文链接:https://www.haomeiwen.com/subject/hybbdftx.html