IOS5 中自定义 UIMenuItem 太宽

发布于 2024-12-23 06:07:42 字数 509 浏览 1 评论 0原文

我的应用程序中有一个 UIWebView,它可以执行 UIMenuController。我将自定义 UIMenuItem 添加到 UIMenuController (如“google it”)。 我添加 UIMenuItem 的代码是:

UIMenuItem *searchItem = [[UIMenuItem alloc] initWithTitle:@"google it" action:@selector(searchWithSelectedText)];
    [[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObject:searchItem]];
    [searchItem release];

现在,可以显示自定义 UIMenuItem 并在单击后执行正确的操作。 但在ios5中,UIMenuItem显示时太宽。

自定义 UIMenuItem 可以像系统项一样设置得更短吗?

谢谢。

I have a UIWebView in my app,and it can perform the UIMenuController. And I add a Custom UIMenuItem to the UIMenuController(like "google it").
The code I add the UIMenuItem is:

UIMenuItem *searchItem = [[UIMenuItem alloc] initWithTitle:@"google it" action:@selector(searchWithSelectedText)];
    [[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObject:searchItem]];
    [searchItem release];

Now,the custom UIMenuItem can be shown and do the right thing after clicked.
But in ios5,the UIMenuItem is too wide when it be shown.

Can the custom UIMenuItem be set shorter like the system items?

Thanks.

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

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

发布评论

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

评论(1

温柔一刀 2024-12-30 06:07:42

这是新的系统风格,我认为你不能自定义它。

This is the new system style, I don't think you can customize it.

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