我正在尝试从UIImageView显示自定义UIMenuController,它嵌入在UITextView中。
我如何实现这一目标?
我看到一个显示剪切,复制,粘贴,选择,全选的菜单,如下图所示:
只有点击更多才能得到我想要的东西:
以下是我的一些代码:
@interface UIImageView (Extended)
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
- (BOOL)canBecomeFirstResponder;
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender;
@end
@implementation UIImageView (Extended)
- (BOOL)canBecomeFirstResponder {
return YES;
}
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
if (action == @selector(copy:) || action == @selector(paste:) || action == @selector(cut:) || action == @selector(delete:) ||
action == @selector(select:) || action == @selector(selectAll:)) {
return YES;
}
return NO;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[self.nextResponder touchesBegan:touches withEvent:event];
}
@end
- (void)showMenuController {
UIMenuController *sharedController = [UIMenuController sharedMenuController];
UIMenuItem *moreOptionsItem = [[UIMenuItem alloc] initWithTitle:@"More options" action:@selector(imageMenuItemPressedMore:)];
UIMenuItem *cut = [[UIMenuItem alloc] initWithTitle:@"Cut" action:@selector(cutImageItemPressed:)];
UIMenuItem *copy_item = [[UIMenuItem alloc] initWithTitle:@"Copy" action:@selector(copyImagePressed:)];
UIMenuItem *paste = [[UIMenuItem alloc] initWithTitle:@"Paste" action:@selector(pasteImagePressed:)];
UIMenuItem *crop = [[UIMenuItem alloc] initWithTitle:@"Crop" action:@selector(cropImagePressed:)];
sharedController.menuItems = [NSArray arrayWithObjects:cut, copy_item, paste, crop, moreOptionsItem, nil];
[moreOptionsItem release];
[cut release];
[copy_item release];
[paste release];
[crop release];
[sharedController setTargetRect:CGRectMake(theView.frame.size.width/2, 0, 0, 0) inView:theView];
[sharedController setMenuVisible:YES animated:YES];
}
我做错了什么? 任何帮助表示赞赏。