Switch between multiple views in the same viewcont

2019-06-05 13:22发布

I'm using the Side-out-Navigation-panel in this example and it is easy for me. Now I want to do it in storyboard and I want when select item from list panel to switch between different views in the centerViewController like uitableView or uiview. exactly like facebook.

how can I make switch between different views in the same viewController? Hope anyone got my mean. Thanks in advance.

2条回答
forever°为你锁心
2楼-- · 2019-06-05 13:58
[UIView transitionFromView:self.someView toView:self.tableView duration:.5 options:UIViewAnimationOptionTransitionFlipFromRight completion:^(BOOL finished) {
        //completion block
    }];
查看更多
The star\"
3楼-- · 2019-06-05 14:14

This Example helped me. It is what I want to do.

查看更多
登录 后发表回答