Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
[self showMenu:view forCell:cell animated:NO];

How do you override this method in Three20 so that it won't do a sliding animation and it won't remove the contents of your TableViewCell? I just want to show menu like what Facebook App does when showing the Comment and Like Menu

share|improve this question

1 Answer

up vote 0 down vote accepted

Well if ever, there's still someone out there having this problem, what I did was to override both of these methods, and somehow, it's working fine..

- (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);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.