Push a detail view in UITableViewCell class

Posted by luca on Stack Overflow See other posts from Stack Overflow or by luca
Published on 2012-06-19T01:47:03Z Indexed on 2012/06/19 3:16 UTC
Read the original article Hit count: 145

Filed under:
|

My class inherit from UITableViewCell, i have make some custom transitions to push a new detail view when an image get selected.

[UIView transitionWithView:self.masterView duration:0.5 options:UIViewAnimationOptionShowHideTransitionViews
                    animations:^ { 
                        [self.masterView addSubview:self.detailImage];
                    }
                    completion:nil];   

My code works fine, the detailImage subview is shown with a transition, but this transition is not what i want exactly. What i want to perform is a simple transition from bottom to up. The list of UIViewAnimation doesn't contain such animation.

Is there any way to use that transition without changing my class inheritance to UINavigationController ?

© Stack Overflow or respective owner

Related posts about ios

Related posts about uiview