0

我正在尝试在 iPad 中选择图像时显示弹出框。那么我该怎么做呢?

4

2 回答 2

0
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *mousePoint = [touches anyObject];

    CGPoint point = [mousePoint locationInView:self.view];
    _didClickMark=CGRectContainsPoint(mImageView.frame, point);

       if(_didClickMark)
       // show popover
}

这可能会帮助你。

于 2011-09-27T11:29:16.947 回答
0

在图像和图像大小上放置一个透明按钮,然后使用 UIPopoverController 启动弹出视图......希望这会有所帮助。

于 2011-09-26T10:38:47.337 回答