UIMenu 按钮在使用后消失

发布于 2024-12-18 23:35:19 字数 600 浏览 1 评论 0原文

我已经像这样自定义了 UIMenuController:

UIMenuItem* note = [[[UIMenuItem alloc] initWithTitle:@"Note action:@selector(noteItemTapped:)] autorelease];
UIMenuItem* share = [[[UIMenuItem alloc] initWithTitle:@"Share" action:@selector(shareItemTapped:)] autorelease]; 
[[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObjects:note, share, nil]];
[[UIMenuController sharedMenuController] update];

并且在 UIWebView 中它可以工作,但有一些问题: 1)经过一些使用后,仅显示默认的“复制”按钮 2)它们不支持触摸(我的视图中添加了 UITapGestureRecognizer),但如果我触摸并拖动一点,它们就可以了。

任何人都可以为我提供一些此类定制的教程或针对问题提出一些建议吗?

I've customized UIMenuController like this:

UIMenuItem* note = [[[UIMenuItem alloc] initWithTitle:@"Note action:@selector(noteItemTapped:)] autorelease];
UIMenuItem* share = [[[UIMenuItem alloc] initWithTitle:@"Share" action:@selector(shareItemTapped:)] autorelease]; 
[[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObjects:note, share, nil]];
[[UIMenuController sharedMenuController] update];

and in UIWebView it work, but with some problems:
1) After some usings only default "Copy" button is shown
2) They don't on touch (I have a UITapGestureRecognizer added to my view) but if I touch and drag a little, they ok.

Can anyone provide me with some tutorials of such customizing or give some your suggestions about problems?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2024-12-25 23:35:20

这是一个 Stackoverflow 答案,应该可以解决您的问题:

UIMenuController 未显示

Here is a Stackoverflow Answer that should solve your problem:

UIMenuController not showing up

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文