我试图在我的iPad上选择一个图像时显示一个弹出框。所以我该怎么办?
答案 0 :(得分:0)
在图像和图像大小上放置一个透明按钮,然后使用UIPopoverController启动弹出视图...希望这会有所帮助。
答案 1 :(得分: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
}
这可能会对你有帮助。