1

如何使用如下所示的选择来实现 UIMenuController?我有一个 UIScrollview,其中在 UIView (CGPDF ...)中加载了 PDF。我让 MenuController 在没有选择的情况下工作,但不知道如何在屏幕上获得选择。现在选择什么对我来说并不重要。我只想显示视觉选择。

下面是我用于 UIMenuController 的代码。

UITouch *touch = [touches anyObject];
CGPoint tapPoint = [touch locationInView:self];
NSLog(@"\nPosition of Touch\nHeight: %f\nWidth: %f", tapPoint.y, tapPoint.x);
CGRect drawRect = CGRectMake(tapPoint.x, tapPoint.y, 20, 20);
UIMenuController *menu = [UIMenuController sharedMenuController];
[menu setTargetRect:drawRect inView:self];
[menu setMenuVisible:YES animated:YES];
4

0 回答 0