IOS5 中自定义 UIMenuItem 太宽
我的应用程序中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是新的系统风格,我认为你不能自定义它。
This is the new system style, I don't think you can customize it.