0

我有自己的 jpg,我想做这样的事情:

声明区域,单击此类弹出窗口后将显示该区域。我怎样才能做到这一点?我试过地图视图,但我认为这是不正确的。

4

1 回答 1

2

有很多方法可以完成,但您没有提供足够的细节来确定哪种方法最合适。(例如,您是否需要在单击之前或之后以图形方式显示这些“热点”区域等)。

要采用最基本的方法,您定义一个基于 CGRect 的对象数组,然后在触摸事件中测试触摸点是否在任何矩形内。

// many ways to define the rects
    NSMutableArray* hotspots; //this would be a @property declared elsewhere

// define 5 CGRects
    for (int i = 0; i < 5; i++) {
        NSValue *rectObj = [NSValue valueWithCGRect:CGRectMake(i * 10, 0, 44, 44)];
        [hotspots addObject:rectObj];
    }

// 并测试命中:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    // Detect touch anywhere
    UITouch *touch = [touches anyObject];

    for (NSValue* rectObj in hotspots) {
        if (CGRectContainsPoint([rectObj CGRectValue], point)){
            //this is a hit so do something

            break;
        }
    }
}
于 2013-02-03T20:25:38.973 回答