[self showMenu:view forCell:cell animated:NO];
如何在Three20中覆盖此方法,以便它不会执行滑动动画并且不会删除TableViewCell的内容? 我只是想显示Facebook App在显示评论和喜欢菜单时所做的菜单
答案 0 :(得分:0)
好吧,如果有的话,仍然有人有这个问题,我做的是覆盖这两种方法,不知何故,它工作正常..
- (void)showMenu:(UIView *)view forCell:(UITableViewCell *)cell animated:(BOOL)animated
{
[self hideMenu:NO];
_menuView = [view retain];
_menuCell = [cell retain];
[_menuCell.contentView addSubview:_menuView];
}
- (void)hideMenu:(BOOL)animated {
if (_menuView) {
[_menuView removeFromSuperview];
TT_RELEASE_SAFELY(_menuView);
TT_RELEASE_SAFELY(_menuCell);
}
}