根据坐标在UIImageView上查找触摸的区域(国家/地区)

时间:2014-12-03 10:58:57

标签: ios objective-c cocoa-touch uiimageview

enter image description here

我正在使用带有地球图像的UIImageView,如果我触摸任何区域示例如果我触摸任何非洲国家,我想触发触摸事件并显示它是由用户点击的特定国家.I接近他的方式让他在图像上进行协调,请给我任何建议我如何才能让国家明智地感动。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

将Image放在ViewController的UIImageView中,以纵向模式

实施

  override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {

        let  touch = touches.anyObject() as UITouch
        println(touch.locationInView(self.view))

    }

结果

(155.5,164.5)