0

在我的应用程序中,我必须在点击表格视图单元格时显示一个菜单控制器。它显示一个菜单。以及所有操作都已成功执行。好到现在。
我面临的一个小问题是,如果再次点击单元格(或其他单元格),我将无法隐藏菜单控制器。这是我正在使用的代码:

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    UIMenuController* menuController = [UIMenuController sharedMenuController];

    if ([menuController isMenuVisible])
    {
        [menuController setMenuVisible:NO animated:YES];
    }
    else
    {
        [self becomeFirstResponder];        
        self.selectedIndex = indexPath.row;
        [menuController setTargetRect:[tableView rectForRowAtIndexPath:indexPath] inView:tableView];

        [menuController setMenuItems:@[
            [[UIMenuItem alloc] initWithTitle:@"Play" action:@selector(playVideo:)],
            [[UIMenuItem alloc] initWithTitle:@"Edit" action:@selector(editVideo:)],
            [[UIMenuItem alloc] initWithTitle:@"Delete" action:@selector(deleteVideo:)],
            [[UIMenuItem alloc] initWithTitle:@"Share" action:@selector(shareVideo:)],
            [[UIMenuItem alloc] initWithTitle:@"Cancel" action:@selector(cancelMenu:)]
        ]];

        menuController.arrowDirection = UIMenuControllerArrowUp;
        [menuController setMenuVisible:YES animated:YES];
    }
}

我不知道为什么再次点击表格视图单元格时它没有隐藏。有人可以指导我做错了什么吗?

4

1 回答 1

0

以我的经验,取消菜单控制器[menuController setMenuVisible:NO animated:NO];有帮助。我想如果您尝试在同一代码块中为菜单设置动画,您可能会遇到问题。

于 2013-03-11T12:00:36.263 回答