Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- NSString *identifier = [NSString stringWithFormat:@"%@", [self.menu objectAtIndex:indexPath.row]];
- // self.slidingViewController.topViewController.view.layer.transform = CATransform3DMakeScale(1, 1, 1);
- // [self.slidingViewController resetTopViewAnimated:YES];
- UIViewController *newTopViewController = [self.storyboard instantiateViewControllerWithIdentifier:identifier];
- [self.slidingViewController anchorTopViewToRightAnimated:YES // anchorTopViewOffScreen:ECRight animation:nil
- onComplete:^{
- CGRect frame = self.slidingViewController.topViewController.view.frame;
- self.slidingViewController.topViewController = newTopViewController;
- self.slidingViewController.topViewController.view.frame = frame;
- //[self.slidingViewController resetTopView];
- [self.slidingViewController resetTopViewAnimated:YES];
- }];
- }
Advertisement
Add Comment
Please, Sign In to add comment